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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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 .