Home > database >  Format number to multiples of 1000 and round it off to one decimal place
Format number to multiples of 1000 and round it off to one decimal place

Time:10-16

I am have a number like this:

988517.05

I am trying to display it as:

998.5 K

which means multiple of thousand rounded off to one decimal place.

What should be the Number Format defined in the customization tab of Apache superset.

CodePudding user response:

Try .4s for the Number Format:

enter image description here

  • Related