Evaluate for empty cell

rlevau

New Member
Joined
Apr 8, 2002
Messages
3
I'm getting a type mismatch error when I check for an empty cell in a row
which has a date in it. The following attempts have produced the type
mismatch error:

do while .Range(strDateCell).Value = vbNull
do while IsEmpty(.Range(strDateCell).Value) = false
do while .Range(strDateCell).Value< format("01/01/1980","mm/dd/yyyy")

I'm SURE that this is so unbelievably simple, I just can't think of it right
now.

TIA
Ron
This message was edited by rlevau on 2002-04-09 12:47
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Do While Range(strDateCell).Value <> ""

This will do while the value is not empty. Is that what you want?
 
Upvote 0

Forum statistics

Threads
1,214,376
Messages
6,119,179
Members
448,871
Latest member
hengshankouniuniu

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