March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi All
I've got DAX measures that calculates the cumulative planned, actual and forecast. Using the planned and actual, I want to get a performance index on the programme report date so I used the dax measure in the image below. The table shows I'm getting the correct value however it does not appear on the card visual. Even with a report date filter, it does not show.
Is there another method of displaying that single value?
Solved! Go to Solution.
Hi @Larryten
Try creating separate measure for card visual using the following DAX:
Performance Index for Card =
VAR ReportDate = MAX('PlanningData'[ReportDate])
VAR PlannedValue = CALCULATE(
[Project Functional Planned],
'S Curve 01 Project Functionals'[TimephaseEnd] <= ReportDate
)
VAR ActualValue = CALCULATE(
[Project Functional Actual],
'S Curve 01 Project Functionals'[TimephaseEnd] <= ReportDate
)
RETURN
IF(
ISBLANK(PlannedValue) || PlannedValue = 0,
BLANK(),
DIVIDE(ActualValue, PlannedValue, 0)
)
Then use the [Report Date] field to create a slicer or page level filter.
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Larryten
Try creating separate measure for card visual using the following DAX:
Performance Index for Card =
VAR ReportDate = MAX('PlanningData'[ReportDate])
VAR PlannedValue = CALCULATE(
[Project Functional Planned],
'S Curve 01 Project Functionals'[TimephaseEnd] <= ReportDate
)
VAR ActualValue = CALCULATE(
[Project Functional Actual],
'S Curve 01 Project Functionals'[TimephaseEnd] <= ReportDate
)
RETURN
IF(
ISBLANK(PlannedValue) || PlannedValue = 0,
BLANK(),
DIVIDE(ActualValue, PlannedValue, 0)
)
Then use the [Report Date] field to create a slicer or page level filter.
Best Regards,
Jarvis Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
hi @Larryten ,
according to your code, it doesn't show anything, because when there is no context, [PlannedValue] returns blank or zero.
hi @FreemanZ
so what I've done so far is this:
1) Calculate cumlative values via this code for planned, actual and forecast values:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
25 | |
18 | |
15 | |
9 | |
8 |
User | Count |
---|---|
37 | |
32 | |
18 | |
16 | |
13 |