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

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

Reply
Anonymous
Not applicable

Assigning dates to value if within a range

Hi gurus,

 

I need your expertise on the below:

 

1. I have a table with Fiscal Quarters Start and End dates

 

QuarterStartEnd
Q4-FY221-Apr-2130-Jun-21
Q1-FY231-Jul-2230-Sep-22
Q2-FY231-Oct-2231-Dec-22

 

2. and another table with dates

23-May-2021

15-Dec-2022

.

.

.

 

So I want to create a column beside these dates to return 

Q4-FY22 for 23-May-2021

and

Q2-FY23 for 15-Dec-2022

and etc...

 

Thanks in advance

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous ,

 

a new column in the second table

 

maxx(filter(FY, FY[Start Date]<= Table2[Date] && FY[End Date]>=  Table2[Date]) , FY[Quarter])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Anonymous ,

 

a new column in the second table

 

maxx(filter(FY, FY[Start Date]<= Table2[Date] && FY[End Date]>=  Table2[Date]) , FY[Quarter])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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