May 16, 2002 #1 wrbodine Programmer Joined Aug 24, 2000 Messages 302 Location 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 Joined May 12, 2000 Messages 1,317 Location US Use the TypeName function. If TypeName(MyVarName) = "String" Then ... Jon Hawkins Upvote 0 Downvote
May 16, 2002 Thread starter #3 wrbodine Programmer Joined Aug 24, 2000 Messages 302 Location US Thanks mucho Jon! Upvote 0 Downvote