May 16, 2002 #1 wrbodine Programmer Aug 24, 2000 302 US Hi, Is there a function or something that can be used to check if something is a string? (like isNumeric is used to check if something is a number?) Thanks! Ray
Hi, Is there a function or something that can be used to check if something is a string? (like isNumeric is used to check if something is a number?) Thanks! Ray
May 16, 2002 #2 jonscott8 Programmer May 12, 2000 1,317 US Use the TypeName function. If TypeName(MyVarName) = "String" Then ... Jon Hawkins Upvote 0 Downvote
May 16, 2002 Thread starter #3 wrbodine Programmer Aug 24, 2000 302 US Thanks mucho Jon! Upvote 0 Downvote