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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
luka_zz
Frequent Visitor

Earliest LAtest date

I would appreciate your help on this one.

Since my data for all markets/retailers is not imported at the same time I have issue with incomplete dates. I would like to keep only days which are earlier than the earliest Latest Date. In other words: I would like that the value 2.6.2019 returns since this is the latest date for which data for all markets/retailers is available.

 

Thank you in advance

 

Latest Date is calculated using MAX() DAX expressionLatest Date is calculated using MAX() DAX expression

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@luka_zz  - I think you would need to summarize the table and then find the min - something like this:

Your Measure = 
var sum_table = SUMMARIZE(
    'Your Table',
    <Market Column>,
    <Retailer Column>,
    "Latest", MAX(<Date Column>
)
return MINX(sum_table ,[Latest])

Hope this helps,

Nathan

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@luka_zz  - I think you would need to summarize the table and then find the min - something like this:

Your Measure = 
var sum_table = SUMMARIZE(
    'Your Table',
    <Market Column>,
    <Retailer Column>,
    "Latest", MAX(<Date Column>
)
return MINX(sum_table ,[Latest])

Hope this helps,

Nathan

@Anonymous thank you very much for your support - your solution works perfectly.

Cheers,

Luka

Helpful resources

Announcements
ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.