This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreGet Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher 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]
)
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 14 | |
| 11 | |
| 9 | |
| 7 | |
| 6 |
| User | Count |
|---|---|
| 37 | |
| 32 | |
| 29 | |
| 23 | |
| 20 |