Hi all,
Need help for this one, I try to detect if there is an inserted / deleted column in my worksheet. So far I only got how to set them in Worksheet.Sheetchange event:
I only want to prevent user to insert / delete the column.
Appreciate for all the help.
-sea-
Need help for this one, I try to detect if there is an inserted / deleted column in my worksheet. So far I only got how to set them in Worksheet.Sheetchange event:
Code:
If selection.Address = selection.EntireColumn.Address Then
MsgBox ("You have made damaging modifications to the project sheet")
' Need the code here
Exit Sub
End If
I only want to prevent user to insert / delete the column.
Appreciate for all the help.
-sea-