MS Excel VBA Code Range Setting Error

OilEconomist

Active Member
Joined
Dec 26, 2016
Messages
421
Office Version
  1. 2019
Platform
  1. Windows
Thanks in advance for your assistance. I have just excerpted the part of the code that causes issues. Why am I getting a "Run Time error '1004': Application-defined or object-defined error" for this line of code:

VBA Code:
Set LoopRng = Range(Cells(8, ColNoStart), Cells(8, CoNoEnd))

in the following code:
Excel Formula:
Sub RngError()

Dim ColNoStart As Long
Dim ColNoEnd As Long
Dim LoopRng As Range


ColNoStart = 1
ColNoEnd = 12
Set LoopRng = Range(Cells(8, ColNoStart), Cells(8, CoNoEnd))

End Sub

When I replace that line with the following, it works:

Excel Formula:
Set LoopRng = Range("B8:L8")
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Thanks in advance for your assistance. I have just excerpted the part of the code that causes issues. Why am I getting a "Run Time error '1004': Application-defined or object-defined error" for this line of code:

VBA Code:
Set LoopRng = Range(Cells(8, ColNoStart), Cells(8, CoNoEnd))

in the following code:
Excel Formula:
Sub RngError()

Dim ColNoStart As Long
Dim ColNoEnd As Long
Dim LoopRng As Range


ColNoStart = 1
ColNoEnd = 12
Set LoopRng = Range(Cells(8, ColNoStart), Cells(8, CoNoEnd))

End Sub

When I replace that line with the following, it works:

Excel Formula:
Set LoopRng = Range("B8:L8")
It was a typo. Apologies as I finally figured it out:
Set LoopRng = Range(Cells(8, ColNoStart), Cells(8, ColNoEnd))

Changed CoNoEnd to ColNoEnd
 
Upvote 0
Solution

Forum statistics

Threads
1,214,641
Messages
6,120,692
Members
448,979
Latest member
DET4492

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