Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi all,
I am facing a very weird error, please help:
1. I have a Measure that reads the Currency Code called "Project Currency"
2. I am using an If/Switch Statement to check this Currency
3. In regards to what currency it is, I Multiple the exchange rate to a column called "Exp"
4. EXP is NOT a measure
5. I am facing this error : "A table of multiple values was supplied where a sigle value was expected"
6. My code :
Note: I used this before and it worked flawlessly and is still working in my old Dashboard.
Solved! Go to Solution.
Try this
CurCol =
IF( SELECTEDVALUE([Project Currency]) = "AED", 'Union SAP Past/Forecast Exp'[Exp] * 4.2373,
IF( SELECTEDVALUE([Project Currency]) = "QAR", 'Union SAP Past/Forecast Exp'[Exp] * 4.1998,
IF( SELECTEDVALUE([Project Currency]) = "OMR", 'Union SAP Past/Forecast Exp'[Exp] * 0.44363,
IF( SELECTEDVALUE([Project Currency]) = "SAR", 'Union SAP Past/Forecast Exp'[Exp] * 4.32672
)
)
)
)
Regards
Phil
Proud to be a Super User!
Hi, @rf5896
You may try the following measure to see if it works.
CurCol =
switch(
[Project Currency],
"AED",sum('Union SAP Past/Forecast Exp'[Exp])*4.2373,
"QAR",sum('Union SAP Past/Forecast Exp'[Exp])*4.1998,
"OMR",sum('Union SAP Past/Forecast Exp'[Exp])*044363,
"SAR",sum('Union SAP Past/Forecast Exp'[Exp])*4.32672
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @rf5896
You may try the following measure to see if it works.
CurCol =
switch(
[Project Currency],
"AED",sum('Union SAP Past/Forecast Exp'[Exp])*4.2373,
"QAR",sum('Union SAP Past/Forecast Exp'[Exp])*4.1998,
"OMR",sum('Union SAP Past/Forecast Exp'[Exp])*044363,
"SAR",sum('Union SAP Past/Forecast Exp'[Exp])*4.32672
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Try this
CurCol =
IF( SELECTEDVALUE([Project Currency]) = "AED", 'Union SAP Past/Forecast Exp'[Exp] * 4.2373,
IF( SELECTEDVALUE([Project Currency]) = "QAR", 'Union SAP Past/Forecast Exp'[Exp] * 4.1998,
IF( SELECTEDVALUE([Project Currency]) = "OMR", 'Union SAP Past/Forecast Exp'[Exp] * 0.44363,
IF( SELECTEDVALUE([Project Currency]) = "SAR", 'Union SAP Past/Forecast Exp'[Exp] * 4.32672
)
)
)
)
Regards
Phil
Proud to be a Super User!
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!