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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
ak77
Post Patron
Post Patron

Display last Quarter Date in the Date Select slicer

Hi all,

 

I have a date select slicer as below with only one selection at a time . i want to replcae this slicer to display only last day of the quarter like 30-09-2022,31-12-2022,31-03-2023 as in pic2. Please help if this option is possible

Pic 1:

ak77_0-1689007211260.png

 

Pic 2 

ak77_1-1689007352342.png

 

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

If you want to use the last day in quarter, you can create calculated columns:

Quarter = QUARTER('calendar'[Date])
Last date in Quarter = CALCULATE(LASTDATE('calendar'[Date]), REMOVEFILTERS('calendar'[Date]))
vicky__1-1689032537896.png

I've separated the columns for readability, but you can modify the formulas to make it just 1 column.

View solution in original post

1 REPLY 1
vicky_
Super User
Super User

If you want to use the last day in quarter, you can create calculated columns:

Quarter = QUARTER('calendar'[Date])
Last date in Quarter = CALCULATE(LASTDATE('calendar'[Date]), REMOVEFILTERS('calendar'[Date]))
vicky__1-1689032537896.png

I've separated the columns for readability, but you can modify the formulas to make it just 1 column.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors