VBA for the Fill color is Red and same border color, line color is no in Chart

kpmsivaprakasam2003

New Member
Joined
Jan 28, 2020
Messages
9
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
  5. 2011
  6. 2010
  7. 2007
Platform
  1. Windows
Hi, I am using the Excel 2013

I have done through recording macro. i have not to change the Fill color is Red and same border color, line color is no.

kindly provide the vba code and thanks for advance


1583134001178.png




Table Data

targetactulbadgoodver good
a
250​
245​
150​
220​
250​
b
350​
300​
280​
330​
350​
c
280​
250​
250​
265​
280​
d
180​
190​
160​
165​
180​


VBA Macro

VBA Code:
Sub Multiple_Bullets_Chart()
'
' Macro12 Macro
'

'
    Range("D1:F5").Select
    ActiveSheet.Shapes.AddChart2(216, xlBarClustered).Select
    ActiveChart.SetSourceData Source:=Range("Sheet3!$D$1:$F$5")
   
    ActiveChart.FullSeriesCollection(3).Select
    ActiveChart.ChartGroups(1).Overlap = 100
    ActiveChart.ChartGroups(1).GapWidth = 50
   
    ActiveChart.FullSeriesCollection(1).XValues = "=Sheet3!$A$2:$A$5"
   
    ActiveChart.FullSeriesCollection(1).PlotOrder = 3
    ActiveChart.FullSeriesCollection(1).PlotOrder = 2
   
    ActiveChart.FullSeriesCollection(3).Select
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .ForeColor.TintAndShade = 0
        .ForeColor.Brightness = -0.25
        .Transparency = 0
        .Solid
    End With
    ActiveChart.FullSeriesCollection(2).Select
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .ForeColor.TintAndShade = 0
        .ForeColor.Brightness = 0.400000006
        .Transparency = 0
        .Solid
    End With
    ActiveChart.FullSeriesCollection(1).Select
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.ObjectThemeColor = msoThemeColorAccent1
        .ForeColor.TintAndShade = 0
        .ForeColor.Brightness = 0.8000000119
        .Transparency = 0
        .Solid
    End With
   
    ActiveChart.SeriesCollection.NewSeries
    ActiveChart.FullSeriesCollection(4).Name = "=Sheet3!$B$1"
    ActiveChart.FullSeriesCollection(4).Values = "=Sheet3!$B$2:$B$5"
    ActiveChart.SeriesCollection.NewSeries
    ActiveChart.FullSeriesCollection(5).Name = "=Sheet3!$C$1"
    ActiveChart.FullSeriesCollection(5).Values = "=Sheet3!$C$2:$C$5"
 
    ActiveChart.FullSeriesCollection(5).Select
    ActiveChart.ChartArea.Select
    ActiveChart.FullSeriesCollection(5).ChartType = xlXYScatter
    ActiveChart.FullSeriesCollection(4).ChartType = xlXYScatter
    ActiveChart.FullSeriesCollection(4).Select
    ActiveChart.FullSeriesCollection(4).XValues = "=Sheet3!$B$2:$B$5"
    ActiveChart.FullSeriesCollection(4).Values = "={10,30,50,70}"
    ActiveChart.FullSeriesCollection(5).XValues = "=Sheet3!$C$2:$C$5"
    ActiveChart.FullSeriesCollection(5).Values = "={10,30,50,70}"
 
 
    ActiveChart.FullSeriesCollection(4).Select
    With Selection
        .MarkerStyle = 8
        .MarkerSize = 5
    End With
    Selection.MarkerSize = 6
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.RGB = RGB(192, 0, 0)
        .BackColor.RGB = RGB(192, 0, 0)
        .Transparency = 0
      
    End With
    Selection.Format.Line.Visible = msoFalse
   
    ActiveChart.FullSeriesCollection(5).Select
    With Selection
        .MarkerStyle = 8
        .MarkerSize = 5
    End With
    Selection.MarkerSize = 6
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.RGB = RGB(0, 0, 0)
        .BackColor.RGB = RGB(0, 0, 0)
        .Transparency = 0
      
    End With
   
    Selection.Format.Line.Visible = msoFalse
   

End Sub
 
Last edited by a moderator:

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
In your code there is a section on the formatting of the series 4, which is your red bullet.

Replace it with the following:
VBA Code:
 ActiveChart.FullSeriesCollection(4).Select
    With Selection
        .MarkerStyle = 8
        .MarkerSize = 5
    End With
    Selection.MarkerSize = 6
    With Selection.Format.Fill
        .Visible = msoTrue
        .ForeColor.RGB = RGB(192, 0, 0)
        .BackColor.RGB = RGB(192, 0, 0)
        .Transparency = 0
      
    End With
    With Selection.Format.Line
        .ForeColor.RGB = RGB(192, 0, 0)
        .Visible = msoTrue
    End With
    ' Selection.Format.Line.Visible = msoFalse 'this sets the outline to be not visible
 
Upvote 0

Forum statistics

Threads
1,215,007
Messages
6,122,670
Members
449,091
Latest member
peppernaut

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