This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have two currencies in my dataset, "GBP" & "Euros".
I would like to create a Calculated column where I convert "GBP" to "Euros" and leave "Euros" as is.
I am trying it with the following IF statement but I keep getting an error.
=IF(
[CURRENCY]="€",
[Value],
[Value]/.85)
Solved! Go to Solution.
Hi @zubairs ,
You're trying to use DAX in Power Query, which uses M.
The correct syntax would be:
if [CURRENCY] = "E" then [Value] else [Value] / 0.85
Pete
Proud to be a Datanaut!
Hi @zubairs ,
You're trying to use DAX in Power Query, which uses M.
The correct syntax would be:
if [CURRENCY] = "E" then [Value] else [Value] / 0.85
Pete
Proud to be a Datanaut!
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 2 | |
| 2 |