Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a column that allows to switch between Currencies: USD $ or NIS ש"ח
In the Dynamic format I have a condition that returns the relevant symbol before the number shown:
VAR c = SELECTEDVALUE('Show Currency'[Currency for Calc])
RETURN
IF(c="USD","$ #,0","₪ #,0")
All works great in the Power BI but when I use Analyze in Excel in the Service - it changes the dollar sign $ to my ש"ח sign because of the Regional Settings.
I don't want to change the Regional Settings, I want to make it show exactly the symbols that I have written in the Dynamic Format.
I tried using UNICHAR:
IF(c="USD",UNICHAR(36)&" #,0",UNICHAR(8362)&" #,0")
But still the same issue.
Please help
Hi, @iBusinessBI
Thanks for Poojara_D12's reply. Trying to replicate your situation, but PBI doesn't seem to support dynamically formatting currency symbols and retaining them in numeric format, how did you achieve this effect in PBI desktop, can you provide pbix/tables with no sensitive data for test.
Best Regards,
Yang
Community Support Team
Hi @iBusinessBI
The issue arises because Analyze in Excel applies the regional settings of the client machine or Excel itself, which overrides custom formatting from Power BI. Unfortunately, Analyze in Excel does not fully support custom number formats as defined in DAX. However, you can work around this limitation by using text-based formatting to preserve your symbols.
Instead of using dynamic formatting for numbers, convert the values to text with the desired symbol:
Formatted Amount =
VAR c = SELECTEDVALUE('Show Currency'[Currency for Calc])
VAR amount = [YourMeasure] -- Replace with your actual measure
RETURN
IF(c = "USD",
"$ " & FORMAT(amount, "#,0"),
"₪ " & FORMAT(amount, "#,0")
)
Let me know if you need further clarification! 😊
Did I answer your question? Mark my post as a solution, this will help others!
If my response(s) assisted you in any way, don't forget to drop me a "Kudos" 🙂
Kind Regards,
Poojara
Data Analyst | MSBI Developer | Power BI Consultant
YouTube: https://youtube.com/@biconcepts?si=04iw9SYI2HN80HKS
Thanks, @Poojara_D12
But I DO need the measure to be a NUMBER, not text.
That's the main reason we use Analyze in Excel - to be able to add more formulae in Excel itself.
So a Kudo from me, but it does not solve my challenge
Thanks again
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
48 | |
31 | |
27 | |
27 | |
26 |
User | Count |
---|---|
61 | |
56 | |
35 | |
31 | |
28 |