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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

MaxMin On Column Chart

Hello everyone,
i have revenue table and calendar table

total revenues = Sum(Revenue_table[Total])

i wantto conditional format my column chart to look like this in desired color the max number for selected date is green, lowest number is red and the rest to be less focused on with light grey color

Maxmin.png

 

i use date column that has dates of everyday

2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

@Anonymous You could do something like this:

Measure =
  VAR __Value = [total revenues]
  VAR __Table = SUMMARIZE(ALLSELECTED('Table',),[Date],"__Measure",[total revenues])
  VAR __Max = MAXX(__Table,[__Measure])
  VAR __Min = MINX(__Table,[__Measure])
RETURN
  SWITCH(TRUE(),
    __Value = __Max,1,
    __Value = __Min,2,
    3
  )

Set your conditional color for your Columns to be Rules and set your rules accordingly.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

Anonymous
Not applicable

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1666168619447.png

Here are the steps you can follow:

1. Create measure.

Measure =
SWITCH(
    TRUE(),
    MAX('Table'[Amount])=MAXX(ALLSELECTED('Table'),[Amount]),"green",
    MAX('Table'[Amount])=MINX(ALLSELECTED('Table'),[Amount]),"red",
    "grey")

2. Column – Colors – FX.

vyangliumsft_1-1666168619450.png

3. Enter the Default color interface.

vyangliumsft_2-1666168619451.png

4. Result:

vyangliumsft_3-1666168619455.png

If you need pbix, please click here.

 

Best Regards,

Liu Yang

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

2 REPLIES 2
Anonymous
Not applicable

Hi  @Anonymous ,

I created some data:

vyangliumsft_0-1666168619447.png

Here are the steps you can follow:

1. Create measure.

Measure =
SWITCH(
    TRUE(),
    MAX('Table'[Amount])=MAXX(ALLSELECTED('Table'),[Amount]),"green",
    MAX('Table'[Amount])=MINX(ALLSELECTED('Table'),[Amount]),"red",
    "grey")

2. Column – Colors – FX.

vyangliumsft_1-1666168619450.png

3. Enter the Default color interface.

vyangliumsft_2-1666168619451.png

4. Result:

vyangliumsft_3-1666168619455.png

If you need pbix, please click here.

 

Best Regards,

Liu Yang

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

Greg_Deckler
Community Champion
Community Champion

@Anonymous You could do something like this:

Measure =
  VAR __Value = [total revenues]
  VAR __Table = SUMMARIZE(ALLSELECTED('Table',),[Date],"__Measure",[total revenues])
  VAR __Max = MAXX(__Table,[__Measure])
  VAR __Min = MINX(__Table,[__Measure])
RETURN
  SWITCH(TRUE(),
    __Value = __Max,1,
    __Value = __Min,2,
    3
  )

Set your conditional color for your Columns to be Rules and set your rules accordingly.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.