hey
i have a problem and it goes this way
i wrote excel (2010) vba code to hide acolumn when the workbook open
Private Sub Workbook_Open()
Sheets("InputData").columns(12).EntireColumn.hidden=true
End Sub
and it works perfect
but i need to add an event so if the user unhide that column manualy the sheet would hide it again
any ideas???
i have a problem and it goes this way
i wrote excel (2010) vba code to hide acolumn when the workbook open
Private Sub Workbook_Open()
Sheets("InputData").columns(12).EntireColumn.hidden=true
End Sub
and it works perfect
but i need to add an event so if the user unhide that column manualy the sheet would hide it again
any ideas???
Last edited: