Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hello dear community
I need a help in creating column in DAX named "Old Cage" to return 1 for :
- column "days between" for values greater than 1
- unless it is Monday then "days between" for values greater than 2
Poniedzialek = (monday)
Thanks so much in advance !
Solved! Go to Solution.
hi @TornDigorn
try like:
Old Cage2 =
IF(
OR(
[DayName] <> "Monday"&&[days between]>1,
[DayName] = "Monday"&&[days between]>2
),
1, 0
)
it worked like:
hi @TornDigorn
try like:
Old Cage2 =
IF(
OR(
[DayName] <> "Monday"&&[days between]>1,
[DayName] = "Monday"&&[days between]>2
),
1, 0
)
it worked like:
User | Count |
---|---|
123 | |
69 | |
67 | |
58 | |
52 |
User | Count |
---|---|
183 | |
90 | |
67 | |
62 | |
53 |