Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Dolly123
Creator II
Creator II

Format custom

Qlikhub_0-1673944849354.png

 

You can tell me how to do in custom format like 23,345K 

1 Solution

Accepted Solutions
ogster1974
Partner - Master II
Partner - Master II

This might be a nicer way to tackle what you're trying to do.

set the format pattern back to auto.

if(Sum(Sales)>1E6, num(Sum(Sales)/1E6,'$#,##0.000M')
 ,if(Sum(Sales)>1E3, num(Sum(Sales)/1E3,'$#,##0.000K')
 ,num(Sum(Sales),'$#,##0')
 ))

ogster1974_0-1673948928102.png

 

View solution in original post

3 Replies
ogster1974
Partner - Master II
Partner - Master II

1.Divide you measure by 1000

2.set your formatting to custom

3. add k to your format pattern and remove the decimal.

Dolly123
Creator II
Creator II
Author

how to show only 5 digit of numbers in custom ?

ogster1974
Partner - Master II
Partner - Master II

This might be a nicer way to tackle what you're trying to do.

set the format pattern back to auto.

if(Sum(Sales)>1E6, num(Sum(Sales)/1E6,'$#,##0.000M')
 ,if(Sum(Sales)>1E3, num(Sum(Sales)/1E3,'$#,##0.000K')
 ,num(Sum(Sales),'$#,##0')
 ))

ogster1974_0-1673948928102.png