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

No Millon or Billion Symbol option on slider

I have a slider with large values and the text is overlapping. I want to simply make 1,000,000 into 1M. There is no "symbol" option in the slider properties, however. Any idea how this can be accomplished? Thanks!

1 Reply
fernandotoledo
Partner - Specialist
Partner - Specialist

Maybe you can create a logic field with your scale as a DUAL() value like you see in the MONTH() that has both numerical and text values.


load dual ( string,numrep ) as DayOfWeek inline
[ string,numrep
Monday,0
Tuesday,1
Wednesday,2
Thursday,3
Friday,4
Saturday,5
Sunday,6 ];
load Date, weekday(Date) as DayOfWeek from afile.csv;


This code was taken from QVs help.