Bar graph colors

Av8tordude

Well-known Member
Joined
Oct 13, 2007
Messages
1,074
Office Version
  1. 2019
Platform
  1. Windows
Is there a way to make bar graph above 0 green and below 0 red in vba?

VBA Code:
With MyChart
    .HasTitle = True
    .HasLegend = False
    .ChartTitle.Text = Range("B1")
    .Axes(xlValue).TickLabels.NumberFormat = "$#,##0;[Red]-$#,##0"
    .Axes(xlCategory).TickLabelPosition = xlTickLabelPositionLow
    .ChartGroups(1).GapWidth = 150
    Wks.ChartObjects(1).Chart.ShowAllFieldButtons = False
End With
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Select the series and press Ctrl+1 to open the Format Series task pane.
Select Solid Fill, and check the Invert if Negative box.
Choose your colors for positive and negative.

This can be done with the following VBA code. I used the macro recorder, but that completely messed it up.

VBA Code:
Sub Macro1()
    With MyChart.SeriesCollection(1)
      .InvertIfNegative = True
      With .Format.Fill
        .Visible = msoTrue
        .ForeColor.RGB = RGB(0, 176, 80)
        .BackColor.RGB = RGB(255, 0, 0)
        .Transparency = 0
        .Solid
      End With
    End With
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,987
Messages
6,122,614
Members
449,090
Latest member
vivek chauhan

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top