Help me-If cell isnull

  • Thread starter Thread starter mach
  • Start date Start date
M

mach

=IF(CELL(day1!D96(IsNull)),"sum(d10:d13)","day1!d96") this is one o
they ways I have tried to write this. I have a workbook and when
want to see if there are anymore debit listed list that otherwise if i
is empty then sum the columns on the current sheet.
day1 is the sheet if null and the data sheet I am looking up the value
on
summary is the sheet I am trying to sum it on after being listed

Thanks
De
 
From Help
IS Functions
See Also

This section describes the nine worksheet functions used for testing the
type of a value or reference.

Each of these functions, referred to collectively as the IS functions,
checks the type of value and returns TRUE or FALSE depending on the outcome.
For example, the ISBLANK function returns the logical value TRUE if value is
a reference to an empty cell; otherwise it returns FALSE.

Syntax

ISBLANK(value)
ISERR(value)
ISERROR(value)
ISLOGICAL(value)
ISNA(value)
ISNONTEXT(value)
ISNUMBER(value)
ISREF(value)
ISTEXT(value)

Value is the value you want tested. Value can be a blank (empty cell),
error, logical, text, number, or reference value, or a name referring to any
of these, that you want to test.



Function Returns TRUE if
ISBLANK Value refers to an empty cell.
ISERR Value refers to any error value except #N/A.
ISERROR Value refers to any error value (#N/A, #VALUE!, #REF!,
#DIV/0!, #NUM!, #NAME?, or #NULL!).
ISLOGICAL Value refers to a logical value.
ISNA Value refers to the #N/A (value not available) error value.
ISNONTEXT Value refers to any item that is not text. (Note that this
function returns TRUE if value refers to a blank cell.)
ISNUMBER Value refers to a number.
ISREF Value refers to a reference.
ISTEXT Value refers to text.



So try if(day1!d96="",sum(d10:d13),day1!d96)
 
Thank you, I tweeked it a little and it works so far. I had read tha
you had to reference cell IsNull and have been hung for days on this.
De
 
Back
Top