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
Hi All,
Can we display the highest and lowest values in the field map?
Thank you.
Solved! Go to Solution.
You can custom the fill color by using conditional formatting to display the highest value and the lowest value.
e.g I have the following state table, i need to display the highest count to green , the lowest count to red, others to yellow.
Create a measure
MEASURE =
VAR A =
SUMMARIZE ( ALLSELECTED ( 'Table' ), [State], "Count", COUNTROWS ( 'Table' ) )
VAR b =
SUMMARIZE ( FILTER ( A, [Count] = MAXX ( A, [Count] ) ), [State] )
VAR c =
SUMMARIZE ( FILTER ( A, [Count] = MINX ( a, [Count] ) ), [State] )
RETURN
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Table'[State] ) IN B, "green",
SELECTEDVALUE ( 'Table'[State] ) IN C, "red",
"yellow"
)
Then put the measure to the conditional formatting of the fill color
Output
And you can refer to the following link.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can custom the fill color by using conditional formatting to display the highest value and the lowest value.
e.g I have the following state table, i need to display the highest count to green , the lowest count to red, others to yellow.
Create a measure
MEASURE =
VAR A =
SUMMARIZE ( ALLSELECTED ( 'Table' ), [State], "Count", COUNTROWS ( 'Table' ) )
VAR b =
SUMMARIZE ( FILTER ( A, [Count] = MAXX ( A, [Count] ) ), [State] )
VAR c =
SUMMARIZE ( FILTER ( A, [Count] = MINX ( a, [Count] ) ), [State] )
RETURN
SWITCH (
TRUE (),
SELECTEDVALUE ( 'Table'[State] ) IN B, "green",
SELECTEDVALUE ( 'Table'[State] ) IN C, "red",
"yellow"
)
Then put the measure to the conditional formatting of the fill color
Output
And you can refer to the following link.
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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!