Forum Discussion

Douglas997t's avatar
Douglas997t
Brass Contributor
Jul 22, 2022
Solved

Getting "FALSE" and cannot seem to correct

7/25/22 @ 6:00p: UPDATE...I figured it out so need for anyone to dive into this one any further. Thanks to all that made the attempt to help.   I have included a spreadsheet that contains a note on...
  • Riny_van_Eekelen's avatar
    Jul 23, 2022

    Douglas997t The formula in HL8 is like this:

    =IF(
        HF8="",
        " ",
        IF(
            AND(HF8>"",HG8>"",HI8=""),
            SUM(HG8*HK8),
            IF(
                AND(HF8>"",HG8="",HI8>""),
                IF(
                    HG8="",
                    SUM(HI8*HK8)
                 )
             )
         )
    )

    The last nested IF has no argument for [value_if_false]. So, when the IF evaluates to FALSE, Excel just returns FALSE as you didn't specify what to do otherwise.

Resources