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!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]
)
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 44 | |
| 44 | |
| 37 | |
| 25 | |
| 25 |