Forum Discussion
Sabrina Lee
Sep 20, 2017Copper Contributor
IF Function
Can I use IF function (yes/no) if one of the cells already has sum formula?
SergeiBaklan
Sep 20, 2017MVP
If your IF function will be in another cell - yes, why not
Sabrina Lee
Sep 20, 2017Copper Contributor
=IF(E1=D1,"YES","NO")
E1 is =C1*5% (51.55*5% = 2.58)
D1 = 2.58
Coming up NO
- Detlef_LewinSep 20, 2017Silver Contributor
Sabrina,
51.55 * 5% equal not 2.58 but 2.5775.
- SergeiBaklanSep 20, 2017MVP
Sabrina, 51.55*5% is 2.5775. It's not equal to 2.58, thus NO. You may use something like
=IF(ROUND(E1,2)=D1,"YES","NO")
- Sabrina LeeSep 20, 2017Copper Contributor
Thank you!!!