Mar 27, 2013 #1 egodette Technical User Jun 12, 2002 222 US Looking for a way to see if a value exists in a set of variables. Example. if x="gb" or x="au" or x="eu" then I would like to say if x in ("gb","au","eu") then
Looking for a way to see if a value exists in a set of variables. Example. if x="gb" or x="au" or x="eu" then I would like to say if x in ("gb","au","eu") then
Mar 27, 2013 1 #2 S SkipVought Programmer Dec 4, 2001 47,487 US Hi, Code: Select case x Case "gb","Audi","eu" 'Do stuff here Case else 'Else stuff here if U have N E End select Skip, Just traded in my old subtlety... for a NUANCE! Upvote 0 Downvote
Hi, Code: Select case x Case "gb","Audi","eu" 'Do stuff here Case else 'Else stuff here if U have N E End select Skip, Just traded in my old subtlety... for a NUANCE!