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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
birdie29
Helper II
Helper II

Max date from a table with one critera

Hello

 

I would like a measure or a column that shows the the max date in my date table (called 'Time') but where another critera is fulfilled ie in the example below, where the financial period status is 0.

 

DateFinancialPeriodStatusLatest Reporting Date
01/01/2017 00:00131-Dec-25
31/12/2016 00:00031-Dec-16

 

I'm currently using the below formula, however this is not filtering the FinancialPeriodStatus by 0 so in the above example I would want the top row, last column to say 31-Dec-16 not 31-Dec-25

 

Latest Reporting Date = calculate(max('TIME'[Date]),allexcept('TIME','TIME'[FinancialPeriodStatus]))

 

Can anyone help please?

 

Thank you

Chris

1 ACCEPTED SOLUTION
Birdjo
Resolver II
Resolver II

Hello @birdie29,

 

Maybe you can try this.

Date = CALCULATE(MAX('TIME'[Date]) ; 'TIME'[FinancialPeriodStatus]="0")

View solution in original post

5 REPLIES 5
BetterCallFrank
Resolver IV
Resolver IV

For the overall latest reporting date try

Max Latest Reporting Date = 
CALCULATE(
  MAX('TIME'[Date]);
  ALL('TIME');
  'TIME'[FinancialPeriodStatus]=0
)

HTH,

Frank

Hi @BetterCallFrank

 

Thanks for your quick response! I'm not sure I could get this to work based on your example. I think the issue is with the ALL('TIME'); 'TIME'[FinancialPeriodStatus]=0 ) part.

 

The previous answer from Birdjo has worked, however thank you very much for taking the time to respond.

 

Chris

Hi Again

 

Apologies for bringing this topic up again, however although I can get the measure of this date I would really like a column with the date instead. Does anyone know how I could do this?

 

Thank you

Chris

Birdjo
Resolver II
Resolver II

Hello @birdie29,

 

Maybe you can try this.

Date = CALCULATE(MAX('TIME'[Date]) ; 'TIME'[FinancialPeriodStatus]="0")

Hi @Birdjo

 

Perfect, thank you! I thought the solution would be a simple one but not that simple!

 

Chris

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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