Application Defined or Object Defined Error

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
Greetings,

I am receiving an application defined or object defined error on this line... not sure why this is giving me an error. Variable values are defined as integers. Looks similar to many of the example online, but...

My intention is to set a range object that changes within a loop.

Code:
Set arg1 = Workbooks("LOGREG_INPUT.xls").Worksheets("Paper1").Range(Cells(2, a), Cells(e, a))

Thanks!
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
Unqualified, those two Cells references refer to the active worksheet.

Code:
  With Workbooks("LOGREG_INPUT.xls").Worksheets("Paper1")
    Set arg1 = .Range(.Cells(2, a), .Cells(e, a))
  End With
 
Upvote 0
What are the values of the (in red)... a,e,a below. the Cells Function expects numeric,,,

.Range(Cells(2,
a​
), Cells(
e
,
a
))
 
Upvote 0

Forum statistics

Threads
1,215,338
Messages
6,124,351
Members
449,155
Latest member
ravioli44

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