Hello Rajesh,
There are three notes regarding this issue:
Check which one fits to your problem:
1473369 Currency translation issue with Excel
1252724 Currency symbol $ is not displayed in Excel
1347721 Decimal Points of US currency is Missing in Excel
Let me know if persist.
Best Regards,
Edward John
HI ,
This is a work out which can solve your problem if your issue is still open
Please try the below steps
To replace pound values with $ or a meaningful description. To do this, attach your code directly to a query using a Visual Basic for Applications (VBA) macro. You can use this feature only with Excel workbooks. Run your query and follow menu path Tools>Macro>Visual Basic Editor
If you have not used Visual Basic or VBA before, talk to someone who has before you perform this step. Remember to save your query as a workbook to ensure the system invokes your VBA code and replaces your numbers when the workbook refreshes.
Dim x as range
For Each x In resultArea
If x.Value = "#" Then
x.Value = "$"
End If
Next X
Regards
KP
Add a comment