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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

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
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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