Share via

#VALUE! error - Help

Anonymous
2019-03-25T01:01:46+00:00

Is there a way to fix the #VALUE! error starting at H36?

This form is tracked daily with information going into columns " B & E ".

Formula for C36 :   =IF(B36="","",(B36-1610.66)).

Formula for D36 :   =IF(C36="","",(C36-C35)).

Formula for F36 :   =IF(E36="","",(E36-997.25)).

Formula for G36 :   =IF(F36="","",(F36-F35)).

Thanks for any and all help!

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2019-03-25T04:46:13+00:00

If you are using =C36+F36 in cell H36, use below instead

=SUM(C36,F36)

This will return a zero.

If you want to return a blank in case either of the cells is blank, then use:

=IF(OR(C36="",F36=""),"",SUM(C36,F36))

Regards,

Amit Tandon

www.excelanytime.com

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Anonymous
    2019-03-25T14:25:38+00:00

    Thanks for the quick reply and your help, much appreciated.

    Was this answer helpful?

    0 comments No comments