Find First Blank in Non-Contiguous Range - VBA

ExcelKnut

Board Regular
Joined
Apr 18, 2013
Messages
144
I 'm trying to find the first blank cell in a non-contiguous range (see code below). When all five cells are blank, "C4" is assigned to variable x. "C2" is the expected and correct value. Any idea why that's happening? No doubt I'm doing something wrong.

Code:
Set x = Worksheets("load_report").Range("C2,C4,C6,C8,C10").Find(what:="", lookat:=xlWhole)
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
I 'm trying to find the first blank cell in a non-contiguous range (see code below). When all five cells are blank, "C4" is assigned to variable x. "C2" is the expected and correct value. Any idea why that's happening? No doubt I'm doing something wrong.

Code:
Set x = Worksheets("load_report").Range("C2,C4,C6,C8,C10").Find(what:="", lookat:=xlWhole)
I think it is because the Find function starts looking after the first cell in the range (when a starting cell is not specified), not at that cell. Try changing your code line to this and see if it works better for you...

Set x = Worksheets("load_report").Range("C2,C4,C6,C8,C10").Find(What:="", After:=Range("C10"), LookAt:=xlWhole)
 
Upvote 0
Rick,

Thanks for taking the time to provide this information. I greatly appreciate it. I'll give that a try.

Jeff
 
Upvote 0

Forum statistics

Threads
1,215,480
Messages
6,125,050
Members
449,206
Latest member
Healthydogs

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