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 all,
I have created a SWITCH measure that shows values in a table based on the selection of a slicer with reporting periods:
When the slicer has selected "First four months" or "First eight months" (Period[TypeID] =2), the table looks like this:
As in the Return statement of the measure itself:
RETURN FORMAT(Result, "Percent")
When selected Reporting Period = "First four months" or "First eight months" (Period[TypeID] =2)
Now I am pretty new at DAX and PowerBI so I don't understand why this happens and how to fix it.
Hope someone can help! Thanks a bunch in advance!
Solved! Go to Solution.
Hi @Frumpy ,
Can you try changing your formatted measure like below:
IF(
ISBLANK([SwitchReportingPeriod Decisions % Timely],
BLANK(),
FORMAT([SwitchReportingPeriod Decisions % Timely], "Percent")
)
Please mark as a solution, if it works.
Hi @Frumpy
Why don't you change the format in Data View?
And you click on the measure % Timely and button %
Hi mlsx4,
Thanks for your answer, sorry I failed to provide full information, but my data model is not actually in PowerBI, it's in SSAS. So unfortunately this formatting isn't an option.
Hi @Frumpy ,
Can you try changing your formatted measure like below:
IF(
ISBLANK([SwitchReportingPeriod Decisions % Timely],
BLANK(),
FORMAT([SwitchReportingPeriod Decisions % Timely], "Percent")
)
Please mark as a solution, if it works.