Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Range for amount

In one of my table it has Depreciation amount and ID and 20fields how to make range of data. In this table more than 150 ID need range 0-10,10-20,20-30.

ID, Dep Amount

19658
29856
39845
49874
59854
69852
79632
89541
99745
103698

Thanks

1 Solution

Accepted Solutions
its_anandrjs

Hi,

You have to replace the values of the '<= x <' because it is generated by Class function.

=Replace(Class(ID,10),'<= x <', '-')

Regards

Anand

View solution in original post

6 Replies
its_anandrjs

Hi,

You have to create the calculated dimension and use the Class function in and straight chart or pivot chart

=Class(ID,10)

Regards

Anand

Not applicable
Author

But it give symbols in the axis with range  '<= x <' any reasons why.

Jay

maxgro
MVP
MVP

maybe with replace, ( '<= x <'  is the default)

=replace(class(ID, 10), '<= x <', '-')

1.png

its_anandrjs

Hi,

You have to replace the values of the '<= x <' because it is generated by Class function.

=Replace(Class(ID,10),'<= x <', '-')

Regards

Anand

MarcoWedel

Hi,

one suggestion. To avoid sorting issues generate a dual value after replacing '<= x <' with '-':


=Dual(Replace(Class(ID,10),'<= x <', '-'),Class(ID,10))


hope this helps


regards


Marco

Not applicable
Author

Thanks i manage this and thanks all for good suggestions.

Jay