Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello everyone,
I am relatively new to Power BI and am still learning DAX.
I am currently pulling in data from a website which gives me the temperature of a specific area five days out. The data gives multiple temperatures per day (one every 3 hours or so). Right now I am trying to build measures to get the MAX and MIN of the temperatures per day, but am struggling to come up with the formulas.
I currently have the following formula:
MAXVALUEDATE=CALCULATE(MAX)[Temp]),FILTER(Forecast,[DATE]))) and it is only giving me the Max value for all the dates that are imported.
Solved! Go to Solution.
Hi,
You can get a summarized table using this,
Table = GROUPBY(Forecast
,Forecast[Date]
,"MaxTemp",MAXX(CURRENTGROUP(),Forecast[Temp])
,"MinTemp",MINX(CURRENTGROUP(),Forecast[Temp])
)
Hi,
You can get a summarized table using this,
Table = GROUPBY(Forecast
,Forecast[Date]
,"MaxTemp",MAXX(CURRENTGROUP(),Forecast[Temp])
,"MinTemp",MINX(CURRENTGROUP(),Forecast[Temp])
)
Thank you very much!
I had not considered the approach of making a new table, but it summarizes everything perfectly.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 102 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |