Hi, I was wondering if someone could just help me out with (what I
think is) an easy query on VB syntax in Excel.
I have the following statement...
Sheets("rm tab4").Select
ActiveSheet.PivotTables("PivotTable1").PivotSelect "",
xlDataAndLabel, True
With Selection.Borders(xlInsideHorizontal)
.LineStyle = xlContinuous
End With
This works just fine, except it needs to visit the 'rm tab4' page in
order to execute. This is a pain because when I run the macro from a
page other than 'rm tab4' (which I need to be able to do), it
transports me to rm tab4 and then leaves me there.
To run this without having to visit the page I think I need to lose the
..Select statement. My attempt at this has been...
Sheets("rm tab4").PivotTables("PivotTable1").PivotSelect "",
xlDataAndLabel, True
Sheets("rm
tab4").PivotTables("PivotTable1").Borders(xlInsideHorizontal).LineStyle
= xlContinuous
....but Excel just laughs at me. Can anyone help me please?
Cheers.
Kevin
Bookmarks