Feb 18 2022 01:09 PM
Want to write True,False for monthly > 50000.
Have tried =IF(E3>50000,TRUE,FALSE)
=IF(E3>"50000",TRUE,FALSE)
=IF(E3>"50000","TRUE,FALSE")
Always give the answer 0.
Feb 18 2022 01:20 PM
@MattA2160
=IF(E3>50000,"TRUE","FALSE")
This works in my sheet.
Feb 18 2022 01:50 PM
As variant
=E3>50000