I have many diagrams in excel and I need to change their look. I wrote this cscript in VBA but it is not working:
Sub Makro1()
'
' Makro1 Makro
'
'
For i = 1 To 28
ActiveSheet.ChartObjects("Diagramm " & i).Activate
ActiveSheet.Shapes("Diagramm " & i).Line.Visible = msoFalse
Next i
End Sub
With this script I am trying to change the frame line to no frame line. But it is not working and I cannto find the bug. Moreover, I need to change the name of the y-axis. Any idea how can I do this?