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 moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Good afternoon everyone, I need help with a measure: I have the following measures:
Total Rooms
Total Rooms SPLY,
I need a logical function that tells me: if Total Rooms SPLY minus Total Rooms is less than or equal to 0, then you give me zero, if the date that is being filtered is less than today you also give me 0, but it gives me the subtraction Total Room SPLY minus Total Rooms
Let's see if anyone can help me.
Thank you
You can refer to the following sample measure.
Measure =
IF (
OR (
[Total Rooms SPLY] - [Total Rooms] <= 0,
SELECTEDVALUE ( 'Table'[Date] ) < TODAY ()
),
0,
[Total Rooms SPLY] - [Total Rooms]
)
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the April 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 |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 65 | |
| 35 | |
| 32 | |
| 25 | |
| 23 |