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
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 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 |
|---|---|
| 37 | |
| 28 | |
| 28 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 38 | |
| 32 | |
| 28 | |
| 24 |