Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
yogitamehta10
Creator
Creator

Number format

  HI ALL,

I have in my dashboard all the values are coming in712239181.798289  bot users want to show in  dashboard in thousand like this  712,239 and when we export the data it should  come original value in712239181.798289   ,..Please help. I’m using this number format  .’ #,##0 ‘.

 

TIA!

5 Replies
antoniotiman
Master III
Master III

Try this

Num(KeepChar(Field,'0123456789.')/1000,'#,##0 K')

K is optional

el_aprendiz111
Specialist
Specialist

Hi,

num11.png

yogitamehta10
Creator
Creator
Author

But I cant  export in the original  format then

yogitamehta10
Creator
Creator
Author

Any other help ? swuehltresesco

el_aprendiz111
Specialist
Specialist

Hi Yogita

with a macro

sub sendXls
SET CHART = ActiveDocument.GetSheetObject("CH11")
SET X = Chart.GetProperties
Chart.SendToExcel
SET CHART=NOTHING
SET X = NOTHING
end sub