VBA Error posting data using offset

mlafrance1

New Member
Joined
Jul 30, 2017
Messages
5
I'm trying to post data to another location in the same sheet using the Offset function but I keep getting "Runtime error 9, subscript out of range". The line that throws the error is the one that starts "Application.Worksheets . . .".
Code:
 Set rng = Range("J17:AA17")
    For Each myCell In rng
        If myCell.Address = "Skin" Then
        MsgBox myCell.Address & " is a skin cell"
        ElseIf myCell.Value <> "Skin" Then
        Application.Worksheets("Calculations!").Offset((myCell.Address), -16, 0) = Range("G18")
        End If
    Next myCell

Thank you for taking a moment to help me with this error.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)

Forum statistics

Threads
1,214,996
Messages
6,122,636
Members
449,092
Latest member
bsb1122

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