Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel 2000 - Blank cell formula

Status
Not open for further replies.

MJamison07

Technical User
Joined
Dec 13, 2001
Messages
54
Location
US
I would like to do the following in Excel 2000:

I have created a form in Excel. If a cell is blank I want a message to appear in a different cell at the end of the form which reads - "Item not complete"

Thanks.
 
Hi,
are you talking about a UserForm or a spreadsheet that you are considering to be a form?

If the latter...
Code:
=IF(ISBLANK(A5),"Fill in, please","")
[/code
where A5 is the cell you want to test.

Hope this helps  :-) Skip,
metzgsk@voughtaircraft.com
 
Thanks for your tip but I was trying to test a range of cells for example:

In cell C15 I would want a formula that enters "incomplete item" if any of the following cells are blank - C2, C3, C6,C7,C11,C12
 
Try this...
Code:
=IF(OR(ISBLANK(C2),ISBLANK( C3),ISBLANK( C6),ISBLANK(C7),ISBLANK(C11),ISBLANK(C12)),"Msg","")
:-) Skip,
metzgsk@voughtaircraft.com
 
That's it!! Thanks. I wasn't putting in the OR
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top