![]() |
![]() |
|
|||||||
| 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 |
|
Board Regular
Join Date: Feb 2002
Location: Longmont, CO
Posts: 279
|
I want a msgbox to pop up if the ActiveCell is blank...
How do I say this? I tried IF ActiveCell.Value = Null Then Msgbox ("My message") ... but this did not work.
__________________
"Never go in against a Sicilian when death is on the line!" |
|
|
|
|
|
#2 |
|
New Member
Join Date: Mar 2002
Posts: 33
|
try if = ""
|
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Longmont, CO
Posts: 279
|
I'm still interested, but I got it to work using
If ActiveCell.Value = "" Then MsgBox....
__________________
"Never go in against a Sicilian when death is on the line!" |
|
|
|
|
|
#4 |
|
Board Regular
Join Date: Feb 2002
Location: Longmont, CO
Posts: 279
|
Must have been typing when you posted that, tk19. Thanks!
__________________
"Never go in against a Sicilian when death is on the line!" |
|
|
|
|
|
#5 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: Monterrey, Mexico
Posts: 1,433
|
Quote:
Try the following: IF ActiveCell.Value = "" Then Msgbox ("My message") ... end if |
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|