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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
pbrosnan
Frequent Visitor

coldest date in time period based on temperature column

how would i do this in Power BI Dax?

I have the following table containing 2 columns:

 

Date,Temperature

 

which contains multiple temperatures per day so multiple rows per day in the table

 

I am looking for the coldest date in 2022 and 2023 based on the temperature column. please advise.

1 ACCEPTED SOLUTION

Hi, @pbrosnan 

 

You can try the following methods.

Measure = Var _mintem=CALCULATE(MIN('Table'[temperature]),ALL('Table'))
Return
CALCULATE(MAX('Table'[date]),FILTER(ALL('Table'),[temperature]=_mintem))

vzhangti_0-1695779049042.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

6 REPLIES 6
some_bih
Super User
Super User

Hi  @pbrosnan possible solution: create 2 measures, one for identification of Min temp and finding date for this Min date. Edit Sheet1 to your table name

Coldest_Temp_year =
VAR __year=2021 -- choose year as you wish
RETURN
MINX ( FILTER ( Sheet1, YEAR ( Sheet1[Date] ) =__year ), Sheet1[Temperature] )
 
Date of Min temp 2021 =
VAR __daily_temp =
    ADDCOLUMNS ( VALUES ( Sheet1[Date] ), "@Daily_temp", [Coldest_Temp_year] )
VAR __min_daily_temp =
    MINX( __daily_temp, [@Daily_temp] )
VAR __dates_with_Min =
    SELECTCOLUMNS (
        FILTER ( __daily_temp, [@Daily_temp] = __min_daily_temp ),
        "DateOfMin_temp", Sheet1[Date]
    )
VAR __Result =
    IF ( COUNTROWS ( __dates_with_Min ) = 1, __dates_with_Min, BLANK () )
RETURN
    __Result
 
For your sample table output is as following
some_bih_0-1695301977508.png

Did I answer your question? Kudos appreciated / accept solution!





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






some_bih
Super User
Super User

Hi @pbrosnan  try with following measures per years. For Max date, just replace MINX with MAXX

Coldest_Date_year_2022 = MINX(
FILTER(yourtablename, YEAR(yourtablename[Date]) = 2022),
yourtablename[Date])

 

Coldest_Date_year_2023 = MINX(
FILTER(yourtablename, YEAR(yourtablename[Date]) = 2023),
yourtablename[Date])





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






i need the date filter to be variable between 01-01-2022 and 31-12-2023. as i am using a date slicer as the filter. 

Hi @pbrosnan so you want result as calculated column or something else. Please describe.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!






i have a table containing these rows and columns:

 

date,temperature

01-01-2021,150

01-01-2021,120

02-01-2021,120

02-01-2021,110

03-01-2022,160

03-01-2022,170

05-01-2022,160

05-01-2022,180

 

i want to return the date that has the lower temperature which is 02-01-2021 so how do i calculate it? there are multiple temperatures per day.

Hi, @pbrosnan 

 

You can try the following methods.

Measure = Var _mintem=CALCULATE(MIN('Table'[temperature]),ALL('Table'))
Return
CALCULATE(MAX('Table'[date]),FILTER(ALL('Table'),[temperature]=_mintem))

vzhangti_0-1695779049042.png

Is this the result you expect?

 

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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