Application Defined or Object Defined Error

SBF12345

Well-known Member
Joined
Jul 26, 2014
Messages
614
I have an application defined or object defined error on the following line:

Code:
SearchArray = Sheets("CurrentSheet").Range(Cells(6, 5), Cells(EndArray, 6))

EndArray is an integer variable and SearchArray is a Range variable. I don't see where the problem is occurring. Any ideas?
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
Which sheet is active when you run the code?
 
Upvote 0
You're missing the word "Set" at the start of the line, but if "CurrentSheet" is not the active sheet then you will get another erro, as you haven't fully qualified the range.
 
Upvote 0
wait a second, still receiving the error with a set introduced.

Code:
Set SearchArray = Sheets("CurrentSheet").Range(Cells(6, 5), Cells(EndArray, 6))
 
Last edited:
Upvote 0
As written, Cells still refers to the active worksheet.

Code:
  With Worksheet("CurrentSheet")
    Set SearchArray = .Range("E6", .Cells(EndArray, "F"))
  End With
 
Upvote 0

Forum statistics

Threads
1,216,192
Messages
6,129,443
Members
449,509
Latest member
ajbooisen

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