Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Yrstruly2021
Helper V
Helper V

Issue with the ROUND function

MicrosoftTeams-image (13).png

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) & "%)")
2 REPLIES 2
Anonymous
Not applicable

Hi @Yrstruly2021 

 

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.

lbendlin
Super User
Super User

The measures may be BLANK() rather than erroring out. 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.