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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

vBand display options

Hi,

I have a graph where is have put in a restriction using a vBand to show the age in groups of 5 days. Now the graph displays the values as;

0 <= x = 5

5 <= x = 10

10 <= x = 15

15 <= x = 20

....

I would like the values to be shown as just the top value, that is;

5

10

15

20

...

I have attached a sample file, please have a look.

Cheers,

1 Solution

Accepted Solutions
tresesco
MVP
MVP

4 Replies
tresesco
MVP
MVP

Like this? PFA

Not applicable
Author

exactly! how did you manage that?

tresesco
MVP
MVP

In your calculated dimension expression, I just added subfield function like:

=SubField(class((today()-received_date), vBand),'<',3)

Not applicable
Author

nice, thank you!