Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I'm trying to show the difference between lowest/highest value of real estate offers next to eachother in one table.
I've got table like this.
advert_number | data_download | price |
111 | 02.01.2020 | 100 |
111 | 03.01.2020 | 200 |
111 | 04.01.2020 | 300 |
… | … | … |
And measures..
Mindate =
CALCULATE(MAX(estate_data[price]), FIRSTDATE(estate_data[date_download]))
Maxdate =
CALCULATE ( max ( estate_data[price] ), LASTDATE(estate_data[date_download]))
But for some reason in few cases I dont see price for min/max date like in this example.
Where I made an error?
Solved! Go to Solution.
Hi @kageyoshi777 ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can update the formula of measure [Mindate] and [Maxdate] as below:
Mindate =
VAR _seladvert =
SELECTEDVALUE ( 'estate_data'[advert_number] )
VAR _mindate =
CALCULATE (
MIN ( 'estate_data'[data_download] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
)
)
RETURN
CALCULATE (
MAX ( 'estate_data'[price] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
&& 'estate_data'[data_download] = _mindate
)
)
Maxdate =
VAR _seladvert =
SELECTEDVALUE ( 'estate_data'[advert_number] )
VAR _maxdate =
CALCULATE (
MAX ( 'estate_data'[data_download] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
)
)
RETURN
CALCULATE (
MAX ( 'estate_data'[price] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
&& 'estate_data'[data_download] = _maxdate
)
)
If the above one can't help you get the desired result, please provide more sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi,
For these kind of calculations I recommend using thins kind of pattern:
Maxdate =
var _mdate = CALCULATE ( max (estate_data[date_download]),All(estate_data[advert_number]))return
CALCULATE ( max ( estate_data[price] ), all(estate_data[date_download]),estate_data[date_download]=_mdate)
The idea here is to first define the desired date in variable then remove some filter context using all and finally returnin filters to the calculation by using the variable defined. You might need to adjust the variable and ALL to get the desired outcome but the idea remains the same. If you have calendar table instead of using ALL(estate_data[date_download]) in the calculate you can use ALL(calendar).
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
My LinkedIn: https://www.linkedin.com/in/n%C3%A4ttiahov-00001/
Proud to be a Super User!
Hi, this solution does not solve my problem 😑. Of course for some "adverts" it works, like old measures worked too.
But for others still nothing.
In this case I'm not using any data tables etc. Only plain data table like in my first post
Hi @kageyoshi777 ,
I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can update the formula of measure [Mindate] and [Maxdate] as below:
Mindate =
VAR _seladvert =
SELECTEDVALUE ( 'estate_data'[advert_number] )
VAR _mindate =
CALCULATE (
MIN ( 'estate_data'[data_download] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
)
)
RETURN
CALCULATE (
MAX ( 'estate_data'[price] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
&& 'estate_data'[data_download] = _mindate
)
)
Maxdate =
VAR _seladvert =
SELECTEDVALUE ( 'estate_data'[advert_number] )
VAR _maxdate =
CALCULATE (
MAX ( 'estate_data'[data_download] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
)
)
RETURN
CALCULATE (
MAX ( 'estate_data'[price] ),
FILTER (
ALLSELECTED ( 'estate_data' ),
'estate_data'[advert_number] = _seladvert
&& 'estate_data'[data_download] = _maxdate
)
)
If the above one can't help you get the desired result, please provide more sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
17 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
9 | |
8 |