Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
I have a calculated column 'PPO Open Conf and Rec'[Past or Future] that indicates Past or Future based on report name. I am trying to create a conditional measure that calculates [STD PPV in ths] if [Past or Future]="Past", otherwise i want it to calculate [PPV Forecast]. Can someone help me create this conditional measure please?
Solved! Go to Solution.
Use the DAX function IF. You can find the syntaxt and example here:
https://dax.guide/if
Measure=
IF(
SELECTEDVALUE('PPO Open Conf and Rec'[Past or Future]) = "Past",
[STD PPV in ths],
[PPV Forecast]
)
Thank you!!
Use the DAX function IF. You can find the syntaxt and example here:
https://dax.guide/if
Measure=
IF(
SELECTEDVALUE('PPO Open Conf and Rec'[Past or Future]) = "Past",
[STD PPV in ths],
[PPV Forecast]
)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.