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
Asantos2020
Advocate II
Advocate II

Get the max value of a column, limiting the search by a Calendar Table

Hello,

 

This may sound really basic, but I've run out of neurons by now and I need your help.

 

I need to get the max value in a column, but the table is filtered by a Calendar Table.

Table1
Date                 Item                Value
01/01/2019      Item1              2

02/01/2019      Item2              3

05/10/2019      Item3              4

 

I've been using this DAX measure to get the max value:

LowestCost = calculate(min(Table1[Value]);Allexpect(Table1;Table1[Item]))

 

I now need to get this max value, but considering the date range in the Calendar Table I have filtering Table1.

 

Thanks in advance!

 

Antonio Santos

1 ACCEPTED SOLUTION

Hi @Asantos2020 ,

 

try this.

HighestCost =
CALCULATE (
    MAX ( Table1[Value] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) )
)

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


View solution in original post

1 REPLY 1

Hi @Asantos2020 ,

 

try this.

HighestCost =
CALCULATE (
    MAX ( Table1[Value] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Date] <= MAX ( 'Calendar'[Date] ) )
)

Regards,

Marcus

Dortmund - Germany
If I answered your question, please mark my post as solution, this will also help others.
Please give Kudos for support.

Did I answer your question?
Please mark my post as solution, this will also help others.
Please give Kudos for support.

Marcus Wegener works as Full Stack Power BI Engineer at BI or DIE.
His mission is clear: "Get the most out of data, with Power BI."
twitter - LinkedIn - YouTube - website - podcast


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.