is blank and

Y

ynissel

Is there an isnotblank function ?
Also is there a function I can write to check if a cell is rounded to the
nearest 1/8th or can I make validation make sure the cell is entered to an
1/8th
Thanks,
Yosef
 
T

TomHinkle

Not = an operator

you can use in conjunction with isempty

....
if NOT (isempty(myCell)) then
....


not sure about the rounding function.
 
Top