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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
ArdraM
Frequent Visitor

Dynamic date range selection

Hi,

 

I've a date slicer in my report that is of type before. Here is the requirement I'm struggling with:

 

If the date selected is 5/1/24 (1rst of may) then date range taken for all calculations should be 4/1/24-5/1/24(1rst of april to 1rst of may)

If the date selected is 5/2/24 or any date after then date range should be 5/1/24 to selected date.

 

How to achieve this.

I would like to apply this as visual filter.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

use the below measure

End Date = MAX('Calendar'[Date])
Start Date =
var a = 'Calendar'[End Date]
var b = IF(DAY('Calendar'[End Date])=1,-2,-1)
var c = EOMONTH('Calendar'[End Date],b)+1
return c
I am getting the expected output
Surya9_0-1715685966089.png

 

View solution in original post

1 REPLY 1
Anonymous
Not applicable

use the below measure

End Date = MAX('Calendar'[Date])
Start Date =
var a = 'Calendar'[End Date]
var b = IF(DAY('Calendar'[End Date])=1,-2,-1)
var c = EOMONTH('Calendar'[End Date],b)+1
return c
I am getting the expected output
Surya9_0-1715685966089.png

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

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.