I have multiple if statements in a formula which I want the "if false" to return the value of cell instead of the work "false". How do I do that? Here is my current statement where I have categories listed in a column. I want this formula to check and if it does not equal either VEH, VES, OR AIR then it should place "GP" in the cell. I get all the "GP" showing but instead of returning the veh, ves, or air value from the cell I get the "false".
=IF(E6<>"VEH",IF(E6<>"VES",IF(E6<>"AIR","GP",E6)))
I want the value of E6 to show and not the word "false".
It's really bugging me.