anyone like writing macros? or know where i could findout how to write one
for this?
im after one that will do the following, with a button;
Sheet name = Totals
unhide colum A
Select Cells A2:J84
Select>Tools>Options>View>Showplaceholders
Select A1>dropdown>Show
hide colum A
Select>Tools>Options>View>Hide all
End
or does anyone know if this will make my rows auto hide or show when data is
on them? colum A has =IF(OR(B2="",B2=0),"Hide","Show) guess i can test it
while i wait :)
Thanks again everyone!
Steve
Don Guillett - 13 Apr 2004 15:17 GMT
You like macros. Try recording a macro while you do these actions. Here's
part.
Sub Macro5()
'
' Macro5 Macro
' Macro recorded 4/13/2004 by Don Guillett
'
'
ActiveWorkbook.DisplayDrawingObjects = xlPlaceholders
ActiveWorkbook.DisplayDrawingObjects = xlAll
End Sub

Signature
Don Guillett
SalesAid Software
donaldb@281.com
> anyone like writing macros? or know where i could findout how to write one
> for this?
[quoted text clipped - 17 lines]
>
> Steve