Please help with this error message

C

Chris Cred

Hey Everyone,

I'm new to this site therefore this is my first post. Please take a look at
this formula and tell me where I went wrong. The formula works as for as the
calculations are concerned. However, since I have numerous blank cells until
data is entered I'm using this formula so I could hide the aweful #DIV/0!
error. Of course it is not hiding it and I'm having trouble. Here is the
formula I am currently using:

=IF(ISERROR(SUMIF(C24:C92,"Fall 05",G24:CG1392)),"No Data Entered",(SUMIF(C24:
C92,"Fall 05",G24:G92))/IF(ISERROR(SUMIF(C24:C92,"Fall 05",F24:F92)),"No Data
Entered",(SUMIF(C24:C92,"Fall 05",F24:F92))))

I've tried parentheses tricks and still no go. I appreciate any help.

Thanks,
Chris
 
G

Guest

Try this:

=IF(ISERROR(OR(SUMIF(C24:C92,"Fall 05",G24:G92),SUMIF(C24:C92,"Fall
05",F24:F92))),"No Data Entered",SUMIF(C24:C92,"Fall
05",G24:C92)/SUMIF(C24:C92,"Fall 05",F24:F92))

HTH,
Elkar
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top