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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
LUCASM
Helper IV
Helper IV

LOOKUP first date in remote table

I am trying to get a (fictitious) first date from my 'Calendar' table where I only have a [Fiscal Year Quarter] in my source data.

My 'Calendar' table contains a complete running table of [Date], [Fiscal Year Quarter] and other useful date elements.

 

So if in my source data set [Fiscal Year Quarter] = FY24 Q1

Then I need to return 1/4/2024 (1 April 2024)

 

This assumes that my Fiscal Year Starts 1 April 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@LUCASM 

is this what you want?

 
Column =
 VAR _q=right('Table'[Fiscal Year Quarter],1)*1
 VAR _m=_q*3+1
 return DATE(2000+MID('Table'[Fiscal Year Quarter],3,2)*1,_m,1)
 
11.PNG




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

Proud to be a Super User!




View solution in original post

3 REPLIES 3
ryan_mayu
Super User
Super User

@LUCASM 

is this what you want?

 
Column =
 VAR _q=right('Table'[Fiscal Year Quarter],1)*1
 VAR _m=_q*3+1
 return DATE(2000+MID('Table'[Fiscal Year Quarter],3,2)*1,_m,1)
 
11.PNG




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

Proud to be a Super User!




It's not a lookup but it certainly solves my problem, Thank you

you are welcome





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

Proud to be a Super User!




Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

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