Share via

Help with #Value!

Anonymous
2024-09-04T16:43:54+00:00

In the picture below I'm trying to compute a value for cells E5 and E6. Basically, I'm blanking out how address an error message (#VALUE!) for cell E5. Cell C5 is actuall a formula and that why in reality it delivers the error message not $0.00. Cell G5 is a copy of the formula in cell E5. Cell G6 is a copy of the formula in cell E6. Cell E5 should be blank, while cell E6 should be $170,597.30.

Microsoft 365 and Office | Excel | For business | 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

Rory Archibald 18,965 Reputation points Volunteer Moderator
2024-09-05T07:09:35+00:00

K17 cannot be blank if that formula is returning an error. Based on your earlier post, I'd suspect your formula in those cells is returning " " and not "".

There are many ways to deal with this sort of situation. For example, you can use IFERROR:

=IFERROR(N17*45360*$C$13,"")

which will handle the situation where either N17 or C13 do not have number values in them.

If you know C13 will always have a number in, you could simply test if N17 has a number:

=IF(ISNUMBER(N17),N17*45360*$C$13,"")

You could also amend the formulas in K:N to return 0 rather than "".

Was this answer helpful?

1 person found this answer helpful.
0 comments No comments

5 additional answers

Sort by: Most helpful
  1. Anonymous
    2024-09-05T03:34:44+00:00

    I'm sorry but I'm still having problems.

    See below

    Why am I getting the error message indicator (#VALUE!) for the P16....... column?

    What is the correct formula for handling blank cells, whe ntheir isn't and data in the (K-O) rows, inreference

    to the P16............. Column. The formula is correct. It dealing with no data. Each or the cell in the range (K16:O18) are populated by formulas. Actual it really (K16:O1222).

    Thanks

    Was this answer helpful?

    0 comments No comments
  2. Rory Archibald 18,965 Reputation points Volunteer Moderator
    2024-09-04T17:29:09+00:00

    No, not exactly:

    =IF($C$6="","",($C6*43560)*$B$2)

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-09-04T17:25:55+00:00

    Is this what your talking about?

    =IF($C$6=""not=" ",($C6*43560)*$B$2)

    Thanks

    Was this answer helpful?

    0 comments No comments
  4. Rory Archibald 18,965 Reputation points Volunteer Moderator
    2024-09-04T16:49:40+00:00

    To test for blank, you want to test for ="" not =" "

    Was this answer helpful?

    0 comments No comments