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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Sameer9585
Creator II
Creator II

Filter

Hi, I need to create a filter in such a way that It should convert the complete data of sales from thousands to million means for example 10 k to 0.1 M it should convert

1 Solution

Accepted Solutions
arpitkharkia
Creator III
Creator III

Hi,

1. Create an inline table for the list box.

2. Write your expression as

if(GetFieldSelections(YourList)='Thousand',"Thousand Format Expresion")

I hope its clear! 🙂

View solution in original post

7 Replies
arpitkharkia
Creator III
Creator III

Hi,

1. Create an inline table for the list box.

2. Write your expression as

if(GetFieldSelections(YourList)='Thousand',"Thousand Format Expresion")

I hope its clear! 🙂

Sameer9585
Creator II
Creator II
Author

Can you help me in clear? I'm not getting it.

arpitkharkia
Creator III
Creator III

PFA

Sameer9585
Creator II
Creator II
Author

I am not clear at the expression step not at the Inline list

arpitkharkia
Creator III
Creator III

=if(GetFieldSelections(List)='Thousand',
Num(YourExpressionHere/1000,'#######K'),
if(GetFieldSelections(List)='Million',
NUm(YourExpressionHere/1000000,'########M')))

 

which part?

Sameer9585
Creator II
Creator II
Author

Where I should type this expression? That's the main doubt

arpitkharkia
Creator III
Creator III

Wherever you want to show the values. In  chart/text box etc.