Urgent Help - VBA Macro_Need Guidance

Virgo_anil

New Member
Joined
Jun 25, 2019
Messages
3
Below Macro is giving error message. Need urgent help..



Sub sbUnProtectSheet()


ActiveSheet.Unprotect "9999"


Set SourceRange = ActiveSheet.Range("B10:H10")
Set FillRange = ActiveSheet.Range("B11:H39")
SourceRange.AutoFill.FillRange
Range("B11").Select


ActiveSheet.Protect "9999", True, True


End Sub
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Code:
Range("B10:H10").Copy Range("B11:B39")
 
Upvote 0
If you want to use Autofill, the fill range needs to include the source range:
Code:
Dim SourceRange As Range, FillRange As Range
Set SourceRange = Range("B10:H10")
Set FillRange = Range("B10:H39")
SourceRange.AutoFill Destination:=FillRange
There's also an optional Type argument for Autofill which governs how the fill is to be handled - see VBA Help for Range.AutoFill Method
 
Upvote 0

Forum statistics

Threads
1,215,006
Messages
6,122,666
Members
449,091
Latest member
peppernaut

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