Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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.
User | Count |
---|---|
84 | |
79 | |
70 | |
47 | |
41 |
User | Count |
---|---|
108 | |
52 | |
50 | |
40 | |
40 |