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 guys,
I have a problem with showing the exact values of the target currency, from AUD to EUR in this example. I've added the DAX expression of "ToSales" (value of target currency):
The target value doesn't match with the exchange quote (0,66) of AUD to EUR. (USD to EUR works fine btw)
Thank you in advance for your help! 🙂
Solved! Go to Solution.
You may add a calculated column first.
Column = LOOKUPVALUE ( Table2[Quote], Table2[FromCurr], Table1[Currency], Table2[TOCurr], Table1[TOCurr] )
You may add a calculated column first.
Column = LOOKUPVALUE ( Table2[Quote], Table2[FromCurr], Table1[Currency], Table2[TOCurr], Table1[TOCurr] )
Hi Sam
thanks a lot.
This is exactly what I have found in parralel.
Andre