Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Numbering

Displaying  to show numbers in Millions ---'M'  and billions-----'B' and in thosands like  -'k',plz explain the expression

3 Replies
sudeepkm
Specialist III
Specialist III

Chart properties > Number

T275352.PNG

sudeepkm
Specialist III
Specialist III

another approach would be to use DUAL function.

In the Script:

set hideprefix = '_';

LOAD dual(fig,num) as _val;

Load * inline [

num,fig

1000,K

1000000,M

1000000000,B

];

Then in the UI: whenever user selects either K or M or B then the expression will change amount accordingly.

T275352_1.PNG

T275352_2.PNG

Not applicable
Author

thank you sudeep for your answer thank you so much,i will ask one more doubt plz explain