Hello Everyone
I have worksheet formula in the following cells B7,B9, D9, B11, D11 and range B15:B10014 and C15:C10014
the problem now when I make lock for these cells and protect sheet with password, the macro which populate data in A15:A10014 not working and give me the following error
also I prevent scroll from properties of sheet but when I close workbook and reopen again, its allow for scroll normal
how can i solve this issue
the macro code that populate data is
Sub RectangleRoundedCorners1_Click()
Dim xWs As Worksheet
Application.ScreenUpdating = False
Application.DisplayAlerts = False
For Each xWs In Application.ActiveWorkbook.Worksheets
If xWs.Name <> "MyList" Then
xWs.Delete
End If
Next
Application.DisplayAlerts = True
Application.ScreenUpdating = True
Dim strPath As String, strFile As String, i As Long
' Prompt user to select a folder
With Application.FileDialog(msoFileDialogFolderPicker)
.InitialFileName = "C:\Temp\" ' Default path
.Title = "Please Select a Folder,{Coded by ExcelForum}"
.ButtonName = "Select Folder"
.AllowMultiSelect = False
.Show
If .SelectedItems.Count = 0 Then Exit Sub ' User clicked cancel
strPath = .SelectedItems.Item(1) & Application.PathSeparator
End With
Application.ScreenUpdating = False
With Sheets("MyList")
.Range("A15", .Range("A" & Rows.Count).End(xlUp).Offset(1)).ClearContents
i = 14
strFile = Dir$(strPath & "*.*")
Do While Len(strFile) > 0
i = i + 1
.Hyperlinks.Add Anchor:=.Range("A" & i), _
Address:=strPath & strFile, _
TextToDisplay:=strFile
strFile = Dir$
Loop
Columns.AutoFit
End With
Application.ScreenUpdating = True
Worksheets("MyList").Range("A:D").ColumnWidth = 40 ' for adjust column width
End Sub
Bookmarks