Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear all,
I need to create two measures to retrieve the minimum and maximum value and add it to the visual below.
As I use the slicer to filter Area, the visual should dynamically pull the minimum and maximum monthly values.
As an example, I want the minimum measure to be 386,172.62 and the maximum to be 1,166321.67.
Solved! Go to Solution.
Suppose you have measured actual sales
calculate(minx(values(Table[Month]), [Real Sales]), allselected())
calculate(maxx(values(Table[Month]), [Real Sales]), allselected())
Hi @Anonymous
Try these measures:
Maximum =
CALCULATE ( MAX ( [Actual Sales] ), REMOVEFILTERS ( table[Month Name] ) )
Minimum =
CALCULATE ( MIN ( [Actual Sales] ), REMOVEFILTERS ( table[Month Name] ) )
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Suppose you have measured actual sales
calculate(minx(values(Table[Month]), [Real Sales]), allselected())
calculate(maxx(values(Table[Month]), [Real Sales]), allselected())
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.