SOLVED

IF Function

Copper Contributor

Hello. I am using Microsoft 365 Excel and have the following formulas in a worksheet:

=IF(C11=C17,True)   &  =IF(F11=F31, True).  The second formula using the F column is working but I can't determine why the first formula using the C column is returning a value of FALSE.

Any help would be appreciated.

clco1748_1-1624462583569.png     

clco1748_2-1624462640917.png

 

 

 

 

 

1 Reply
best response confirmed by clco1748 (Copper Contributor)
Solution

@clco1748 First of all, you don't need the IF. Just use =C11=C17. It will display TRUE if both cells are exactly the same and FALSE if they are not. I guess that you have rounding issue. Try =ROUND(C11,2)=ROUND(C17,2)

1 best response

Accepted Solutions
best response confirmed by clco1748 (Copper Contributor)
Solution

@clco1748 First of all, you don't need the IF. Just use =C11=C17. It will display TRUE if both cells are exactly the same and FALSE if they are not. I guess that you have rounding issue. Try =ROUND(C11,2)=ROUND(C17,2)

View solution in original post