On the other way, to test the data
1.1] If the data is numeric value and ignore 0 :
=IF(ISNUMBER(1/A4),"GOOD","BAD")
1.2] If the data is numeric value (include 0) :
=IF(ISNUMBER(A4),"GOOD","BAD")
2] If the data is text value :
=IF(ISTEXT(B4),"GOOD","BAD")
Regards
Bosco