Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am geting the error above for these codes. Where am i going wrong?
Dynamic Forecast measure =
SWITCH(
SELECTEDVALUE(Dynamic_Selection_Period[Period]),
"Prediction",
"Forecast: " &
IF(
ISERROR([Time Metric Calculations FCST]),
"Error",
ROUND([Time Metric Calculations FCST], 2)
) &
" (" &
IF(
ISERROR([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST]),
"Error",
ROUND(([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST]), 2)
) &
", " &
IF(
ISERROR(([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST]),
"Error",
ROUND(([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST], 2)
) &
"%)",
"MTD",
"Forecast: " &
IF(
ISERROR([Time Metric Calculations FCST]),
"Error",
ROUND([Time Metric Calculations FCST], 2)
) &
" (" &
IF(
ISERROR([Time Metric Calculations CY] - [Time Metric Calculations FCST]),
"Error",
ROUND([Time Metric Calculations CY] - [Time Metric Calculations FCST], 2)
) &
", " &
IF(
ISERROR(([Time Metric Calculations CY] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST]),
"Error",
ROUND(([Time Metric Calculations CY] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST], 2)
) &
"%)"
)Dynamic Forecast measure = SWITCH(SELECTEDVALUE(Dynamic_Selection_Period[Period]),"Prediction","Forecast: " & ROUND([Time Metric Calculations FCST],2) & " (" & ROUND(([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST]),2) & ", " & ROUND(([Time Metric Calculations CY Forecast] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST],2) & "%)","MTD","Forecast: " & ROUND([Time Metric Calculations FCST],2) & " (" & ROUND([Time Metric Calculations CY] - [Time Metric Calculations FCST],2) & ", " & ROUND(([Time Metric Calculations CY] - [Time Metric Calculations FCST])/[Time Metric Calculations FCST],2) & "%)")
Judging from your error message, the problem is with your Range function.You use the ROUND function to round the result to two decimal places. This should be fine, but you need to make sure that the rounded value is of the numeric type.
If the above suggestions don't help you solve your problem, please provide detailed sample pbix file and the results you expect.So that I can help you better. Please remove any sensitive data in advance.
Best Regards,
Jayleny
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The measures may be BLANK() rather than erroring out.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 15 | |
| 8 | |
| 8 | |
| 8 |