I am trying to figure out how to write an IF statement such as this
IF (value in column A is ODD, then do this)
IF (value in column A is EVEN, then do this)
With the cells having both letters and numbers in them (i.e. cells would have the following format in a column: A1, A2, A3, etc.). This is my current formula:
=IF(EVEN(A13)=A13, I13, L13),
However, I can't somehow manipulate it such that it omits the letter in the cell and just looks at the number. Any suggestions would be gladly appreciated!
A13
withRIGHT(A13, LEN(A13)-1)
– Robin GertenbachIIF()
(inline if) works much the same way as Excel'sIF
formula. – jsheeran