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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel

Status
Not open for further replies.
Dec 4, 2000
2
US
I created an excel workbook that has several sheets. I have one worksheet that is INPUT and another sheet that is OUTPUT. The INPUT sheet is for data entry only, with the OUTPUT sheet being the invoice generated from the data entered in the INPUT sheet. What I can't figure out is how to have the cells on the OUTPUT sheet come back empty if they are not utilized on the INPUT sheet. Any suggestions are appreciated.
 
Let's suppose Input sheet has cell A2 empty, but you refer to it in Output sheet.

On Output sheet, put this formula, or incorporate this formula into your existing formula:

=if(isblank(Input!a2),"",MyFormula)

or

=if(Input!a2="","",MyFormula)
techsupportgirl@home.com
Brainbench MVP for Microsoft Word
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top