Copying data from another sheet with vba

bptaw

Board Regular
Joined
Feb 27, 2017
Messages
69
Office Version
  1. 2016
Platform
  1. Windows
I have a sheet prefilled with data to match my destination sheet. I am using the following code to copy all the unlocked data cells to the destination sheet.
Sub Prefill()


If Sheets("Prefill").ProtectContents = True Then

Application.ScreenUpdating = False

Worksheets("Prefill").Activate
For i = 1 To 110
For j = 1 To 18
If Cells(i, j).Locked = False Then
a = Cells(i, j).Value
Worksheets("Cost Your Hemp").Activate
Cells(i, j).Value = a
Worksheets("Prefill").Activate
End If
Next j
Next i

Application.GoTo Worksheets("Cost Your Hemp").Range("B3")

Application.ScreenUpdating = True
End If

End Sub

This works fine as long as the destination sheet is unprotected. However I get an error (red text) when I protect the data entry cells in the destination sheet. Anyway to fix that?
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
I think the problem was a mismatch with locked and unlocked cells, so all sorted
 
Upvote 0
Solution

Forum statistics

Threads
1,215,110
Messages
6,123,148
Members
449,098
Latest member
Doanvanhieu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top