Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What is the null operator in VB? Like if i wanted to say...
If Cells (7,1) = NULL or empty How would I go about doing that? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
A few ways depending upon what it contains
If IsEmpty(Cells (7,1).Value) Then If Cells (7,1).Value = "" Then If Len(Cells (7,1).Value) = 0 Then -- HTH Bob Phillips (remove nothere from email address if mailing direct) "Raleigh" wrote in message ... What is the null operator in VB? Like if i wanted to say... If Cells (7,1) = NULL or empty How would I go about doing that? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Failed to save table attributes of (null) into (null). | Excel Discussion (Misc queries) | |||
COUNTIF says Null = Blank but Blank < Null | Excel Worksheet Functions | |||
cell value based on null/not null in another cell | Excel Worksheet Functions | |||
what does ~ operator mean? | Excel Discussion (Misc queries) | |||
Can the AND operator be of use here? | Excel Programming |