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 alll,
I am trying to create a slicer that filters reports by 90 days, past due, due soon. How do I write the conditions below in Dax
if due date is over 90 days ="past due"
If due date is between 45 to 90 days = "Due soon"
If due day i equal to 90 days then = "90 days"
Than you
SWITCH(TRUE(),
[Due Date]>90,"past due",
[Due Date]=90,"90 days",
[Due Date]>44,"due soon",
"not due soon")
If(
Due Date > 90,
"Past due",
If(Due Date = 90,
"90 days",
If(Due Date = 45 && Due Date < 90,
"Due soon",
)
)
)
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.