W
windme
Hello,
I have a macro that does the following:
Unhides any column from "C" to "AJ"
Unhides any row from "4 to 34"
Looks for the first blank cell in "column C" starting at "C4" an
places the cursor there for data input.
This is the macro:
Sub unhideeverything()
ActiveWindow.DisplayHeadings = False
Columns("C:AJ").Select
Selection.EntireColumn.Hidden = False
Rows("4:34").Select
Selection.EntireRow.Hidden = False
Range("C4").Select
Cells.Find(What:="", After:=ActiveCell, LookIn:=xlFormulas
LookAt:= _
xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext
MatchCase:= _
False, SearchFormat:=False).Activate
End Sub
Here's where I need help. After entering data in the first blank ro
after "C4" I would like to do the following:
Hide columns F, X, Y, Z
Go to the first blank cell in column "C" after C4 and hide that row an
subsequent rows to row 34.
Thank you in advance for any suggestions.
Mik
I have a macro that does the following:
Unhides any column from "C" to "AJ"
Unhides any row from "4 to 34"
Looks for the first blank cell in "column C" starting at "C4" an
places the cursor there for data input.
This is the macro:
Sub unhideeverything()
ActiveWindow.DisplayHeadings = False
Columns("C:AJ").Select
Selection.EntireColumn.Hidden = False
Rows("4:34").Select
Selection.EntireRow.Hidden = False
Range("C4").Select
Cells.Find(What:="", After:=ActiveCell, LookIn:=xlFormulas
LookAt:= _
xlPart, SearchOrder:=xlByColumns, SearchDirection:=xlNext
MatchCase:= _
False, SearchFormat:=False).Activate
End Sub
Here's where I need help. After entering data in the first blank ro
after "C4" I would like to do the following:
Hide columns F, X, Y, Z
Go to the first blank cell in column "C" after C4 and hide that row an
subsequent rows to row 34.
Thank you in advance for any suggestions.
Mik