Forum Moderators: open
If left(szloginname,5) = 'GUEST' then <do code>
else <do nothing>
end if
How do I check for multiple values without nesting multiple if then statements?
if left(szloginname,5) = 'GUEST' or 'This Guy' or 'This guy' then <do code>
elseif left(szloginname,5) = 'this guy' then <do this instead>
end if