Similar Posts

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

3 Comments

  1. Thank you for this insight. Can you please explain why we need %UPCASE? The list I want to compare is in lower case, how can I do this?

    1. %UPCASE converts the variable to uppercase before comparison. If you are sure about the case and it will not change then you can use it without %UPCASE.

      %if not(&names) in ALICE JAMES JOHN JUDY %then

    2. %UPCASE converts the variable to uppercase before comparison. If you are sure about the case and it will not change then you can use it without %UPCASE.

      %if not(&names) in alice james john judy %then