How to check data type?

I’ve got the following input box and would like to do a check, to make sure the user entered a numeric value instead of a text value. I saw something about the Values property but testing has left me puzzled !

release = Inputbox$ ( "Please specify NUMERIC value only " , “Release Number” , 1.00 , 1000 , 500 )

Subject: How to check data type ?

IsNumeric would be a good start.

Subject: RE: How to check data type ?

Cor, that easy ! Thanks a lot :slight_smile: