Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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!
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.