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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors
Top Kudoed Authors