Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
73 | |
71 | |
38 | |
28 | |
26 |
User | Count |
---|---|
99 | |
88 | |
62 | |
42 | |
39 |