A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
If you are only checking two conditions you don't need IFS. You can just use IF
if((A2-Trunc(A2))>.5,result, other result)
This would check >.5 and <=.5
if you want three conditions, then you could use IFS
IFS((A2-Trunc(A2))>.5,Result,(A2-Trunc(A2))=.5,Result,(A2-Trunc(A2))<.5,Result)
although doing an exact equality check on a floating point number might not give you the results you expect.
--
Regards,
Tom Ogilvy