Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi all,
I am using the FORMAT function to dynamically change currency symbols (chosen by a slicer) and I have run into a rather strange problem. SOME 😲 of the currencies are not returned correctly. Mostly the FORMAT function is doing what I want. I find this rather frustrating.
Here are the symbols not working:
Solved! Go to Solution.
@JanaP , Try like
1) FORMAT([Measure], "\K\n #,##0.##") returns K2 #,##0.##
2) FORMAT([Measure], "\S/ #,##0.##") returns 0/ #,##0.##
Thank you @amitchandak , much appreciated 🙂
What is the rationale behind the solution, please? Thank you .