Code Stopped Working

Sherifa

New Member
Joined
Oct 23, 2017
Messages
45
My code referring to the colour of the trendline has stopped working.
It was previously working fine, but now threndline is white.
Rich (BB code):
Sub AddDeals()
'
' AddDeals Macro


Dim Wkb As Excel.Workbook
Dim ws As Sheets


Set Wkb = ThisWorkbook
Set ws = ThisWorkbook.Worksheets
ws_count = Wkb.Worksheets.Count
                
                   
        'Begin loop
        For i = 6 To ws_count
    
                      
        Wkb.Sheets(i).Activate
        ActiveSheet.Range("Q3:s12").Select
        ws(i).Shapes.AddChart(xlColumnClustered, _
            Left:=ws(i).Range("Q18").Left, _
            Top:=ws(i).Range("Q18").Top, _
            Width:=ws(i).Range("Q18:X18").Width, _
            Height:=ws(i).Range("Q18:Q44").Height).Select
            
         
   With ActiveChart
    'Title
    .HasTitle = True
    .ChartTitle.Characters.Text = Range("A1")
    
    'Primary Axis
    .Axes(xlCategory, xlPrimary).HasTitle = True
    .Axes(xlCategory, xlPrimary).AxisTitle.Characters.Text = "Month"
    .Axes(xlValue, xlPrimary).HasTitle = True
    .Axes(xlValue, xlPrimary).AxisTitle.Characters.Text = "No of Deals"
    
    .SeriesCollection(1).Trendlines.Add Type:=xlMovingAvg
    
        With .SeriesCollection(1).Trendlines(1)
            .Border.ColorIndex = 11
        End With
        
        With .SeriesCollection(1).Trendlines(1).Format.Line
        .Weight = 0.3


        End With
        
    End With
    
    'Average Horizontal Line Line
   
    With ActiveChart
        With .SeriesCollection(2)
            .ChartType = xlLine
            .AxisGroup = 1
            .Name = "Average"
            .XValues = Range("s4:s12")
                              


        End With
        
     End With
    
    'Axis Title
    ActiveChart.HasLegend = True
    ActiveChart.Legend.Select
    Selection.Position = xlBottom
    
   Next
End Sub
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.

Forum statistics

Threads
1,215,001
Messages
6,122,648
Members
449,092
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