Jack-P-Winner
Member
I have many rows in a spreadsheet. How can I make 1 letter equal another for example:
O=D
E=U
O=D
E=U
Hi,
I think you wanted to have something like this...insert the below formula in cell a1.
=IF(B1="O","D",IF(B1="E","U"))
Regards,
A!
Thanks, but I also need EHi Larry,
Since there are only 2 type of returns, i.e. "D" & "U"
I think above formula can be simplified with just one if statement:
=IF(B1="O","D","U")
Regards,
Thanks, but I also need E