Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

DAX for date range lookup

Hi,

 

Can anyone help me with a calculated column like highlighted below?

 

So I have a DATEDIF of: TODAY() vs a Date column.

The Date values can be in the past/present/future or blank.

The DATEDIF result is therefor a number(negative or positive) or blank.

 

I would like to find a solution in order to create a calculated column which I can add afterwards in a slicer which will act as a filter to provide the following possibility:

 

Slicer options:

a)when A selected, filter only the DATEDIFs (or Dates) which go up to 15 (blank, past or 15 days in the future)

b)when B selected, filter only the DATEDIFs (or Dates) which go up to 30 (blank, past or 30 days in the future)

c)when C selected, filter only the DATEDIFs (or Dates) which go up to 45 (blank, past or 45 days in the future)

 

So basically this time frame must expand by selecting different options from the slicer (must be buttons/dropdown mandatory).

 

Thanks!

2 REPLIES 2
ryan_mayu
Super User
Super User

@Anonymous 

you can try this to create a column

Column = 
VAR _dif=ABS('Table'[date]-today())
return SWITCH(TRUE(),_dif<=15,"A",_dif<=30,"B","C")

11.PNG

however, the problem is we can only assign blank to one category. So I didn't put it in the DAX.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Anonymous
Not applicable

Anyone please?

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.