I have a basic IF statement
=IF(C41="Total","5","4")
That checks if C41 contains the Word total and returns 5 if yes and 4 if no.
How do I get it to return 5+2 if correct?
=IF(C41="Total","5+2","4")
Returns the string “5+2”
and
=IF(C41="Total",5+2,"4")
Returns TRUE
im sure this is something small and stupid I missed, but i can’t figure out the syntax. let me know.