I need a function that will do the following:
If G6>=75, then I need the cell to say "MAX". But if false, or G6<75, then I need the cell to show the actual value or number in G6.
I tried IF(G6>=75,"MAX","G6"), but it did not work. What am I doing wrong?
Help?
maybe this way
IF(G6>=75,"MAX",G6)
Regards
tom1977
If You are satisfied with my solution click the small star icon on the left to say thanks.
Hi Bobbum Man, welcome to the forum.
You just need to remove G6 from the quotes. Within quotes, it's considered a text string. Outside of the quotes it is a cell reference. So...
=IF(G6>=75,"MAX",G6)
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks