Hi,
I'm new with VB and try to learn it through web search. I try to find it on the web (ex: http://www.excelforum.com/excel-prog...above-row.html) and can't really find anything that works for me (or probably because I'm still new and confuse).
Below are the coding that I use:
Private Sub Workbook_Open()
For Each ws In Sheets
With ws
.Unprotect Password:="1"
.Protect Password:="1", UserInterfaceOnly:=True, DrawingObjects:=False, AllowFormattingCells:=True, AllowFormattingColumns:=True, AllowFormattingRows:=True, AllowInsertingRows:=True
.EnableOutlining = True
End With
Next ws
End Sub
Now, I need to make the end user able to insert row with automatically copy formula from above row that is protected. The formula are on column F,K,P,U,etc. I cannot find anything from the web that relevance to my inquiry.
Anyone can help?
Thanks
Bookmarks