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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
64 | |
63 | |
52 | |
39 | |
24 |
User | Count |
---|---|
80 | |
57 | |
45 | |
44 | |
35 |