![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Apr 2002
Posts: 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 ] |
|
|
|
|
|
#2 |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
Do While Range(strDateCell).Value <> ""
This will do while the value is not empty. Is that what you want?
__________________
Kind regards, Al Chara |
|
|
|
|
|
#3 |
|
New Member
Join Date: Apr 2002
Posts: 3
|
Thank you so very much!
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|