Recalculate the IF statemtn value to a text message

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I have a formula like this:


IF(IF('BLDG8'A62='BLDG 7'!A62,networkdyas9'BLDG 8'!c62,'bLDG 7'!c62),
"")=ISERR('Bldg 8'!d74), 'Bldg 8'!74,"")

the first If function returns a "#Value", my attemp on the above function is
to get a text value answer if the formula comesa out as #VAlue. I .e. the
IF('BLDG8'A62='BLDG 7'!A62,networkdyas9'BLDG 8'!c62,'bLDG 7'!c62)=
#Value,(which is an error), then give the Sheet X Cellx Value as a end value.
the sheet X value is a written statement.

Any suggestions on how to do this? or even improve the IF statement. Because
not all cells will have a text input, tmajority have dates.
 
I fixed it, there was some conditional formatting from another party that I
was not aware of. Thank you for the help!
 
To trap for an error, you need to do it in the following fashion:

=if(iserr(formula),"",formula)

Next, you need to spell the function properly. It's "networkdays", not
"networkdyas".

Thirdly, your parentheses must match. You have a "9" after networkdyas, rather
than the required opening parenthesis.

Fourth, you need to identify the worksheet properly. Sometimes you have "bldg8"
(without a space), and sometimes "bldg 8" (with a space).

Fix these errors, and the formula should work. Post back if you need more help.
Don't expect us to continually fix typographic errors, though.
 
General format:

=IF(ISERROR(formula),"Error message",formula)

=IF('BLDG8'A62='BLDG 7'!A62,IF(ISERROR(networkdays('BLDG 8'!c62,'bLDG
7'!c62)),"Your error text",networkdays('BLDG 8'!c62,'bLDG 7'!c62)))

HTH
 

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

Back
Top