Example
Check row A1:R1 and if at least one cell is empty then S1 should indicate
"incomplete" otherwise "complete" if every cell in the row has a value
|
|
0
|
|
|
|
Reply
|
Utf
|
6/1/2010 7:15:01 PM |
|
=IF(COUNTA(A1:R1)=18,"Complete","Incomplete")
--
HTH
Bob
"DavidS" <DavidS@discussions.microsoft.com> wrote in message
news:4BFC7A2C-1DDE-446B-BA3C-10972F25EACC@microsoft.com...
> Example
> Check row A1:R1 and if at least one cell is empty then S1 should indicate
> "incomplete" otherwise "complete" if every cell in the row has a value
|
|
0
|
|
|
|
Reply
|
Bob
|
6/1/2010 7:42:58 PM
|
|
Try yhis formula in cell S1:
=IF(COUNTBLANK(A1:R1)>0,"Incomplete","Complete")
Note that this will only check for blank cells - it won't check whether the
cell contents are valid data for your purposes.
Regards,
Tom
"DavidS" wrote:
> Example
> Check row A1:R1 and if at least one cell is empty then S1 should indicate
> "incomplete" otherwise "complete" if every cell in the row has a value
|
|
0
|
|
|
|
Reply
|
Utf
|
6/1/2010 8:12:01 PM
|
|