Something like this?
=IF(ISNUMBER(RIGHT(C1, 1)*1), "yes", "no")
Why have you got "*1" in there?
You dont need it
RIGHT will always return text regardless of the cell value, but ISNUMBER will try to convert that to a number, so in this case you do not need the *1