Thread: On error
View Single Post
  #1  
Old April 19th, 2009, 01:56 PM posted to microsoft.public.excel.worksheet.functions
Kashyap
external usenet poster
 
Posts: 59
Default On error

Hi, I have code as below which will update links..

On error sheet will be unlocked.. how to lock the sheet again and exit sub?

Sub ref()

ActiveSheet.Unprotect Password:="abc"

ActiveWorkbook.UpdateLink Name:= _
"asdasd", _
Type:=xlExcelLinks

ActiveSheet.Protect Password:="abc"

End Sub