Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Histogram

Hi Guys,

I see there are a few posts regarding this descriptive method of charting, but my lack of experience makes understanding what they're talking about very difficult LOL

Ok, so what I am trying to do is create a histogram for each fielditem that I have. On the Y axis will be the COUNT and on the x-axis my intervals that I have defined. I do not want QV to randomly choose how many intervals to use, I would like to define this myself and for QV to then determine the equal width of each interval.

Guys, as much detail and lamens terms as possible when explaining, I am very new to QV 🙂

Thanks,

Byron

1 Solution

Accepted Solutions
Not applicable
Author

Hi

Did you try Class function ?

Class ( Variable , 5 ) give you interval with a step = 5.

If you know exactly the threshold of each bar, create an expression like this

If ( Var > x1 , '> x1' ,

if( Var > x2 , ' x2 to x1' , < x2 ) )

View solution in original post

2 Replies
Not applicable
Author

Hi

Did you try Class function ?

Class ( Variable , 5 ) give you interval with a step = 5.

If you know exactly the threshold of each bar, create an expression like this

If ( Var > x1 , '> x1' ,

if( Var > x2 , ' x2 to x1' , < x2 ) )

Not applicable
Author

Cheers, ended up using the class function and then a variable overview to allow a more dynamic range with regards to the number of intervals reported on.

Cheers man,

Byron