2 result in the same column

Hi everyone I have a little problem about this formula. In a column called “RESULT” I want the result of this formula.
IF ([F]> [TARGET F], “Out of Range”, “In Range”). I have two more columns that should return me the same result always in the “result” column
IF ([L]> [TARGET L], “Out of Range”, “In Range”). Basically I should link the two formulas together.

Solved Solved
0 4 76
1 ACCEPTED SOLUTION

Thanks for your help, i try but i have this result

IF function is used incorrectly:three inputs should be provided — (condition, if-result, else-result).

View solution in original post

4 REPLIES 4

If it’s only the two, then you can use an OR condition like so:

IF ( OR([F] > [TARGET F], [L] > [TARGET L]) ,
       “Out of Range”, 
       “In Range”)

If you have more conditions then I would recommend using IFS() function.

Thanks for your help, i try but i have this result

IF function is used incorrectly:three inputs should be provided — (condition, if-result, else-result).

I was missing a comma after the OR(). I edited the post to include it.

thanks a lot!!!

Top Labels in this Space