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
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
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.