What does lowcase and upcase fucntion mainly do ?
Assuming your question is from an intuitive sense rather than a mere purpose/task of what upcase/lowcase functions accomplishes that is converting characters to upcase(all in CAPS) and lowcase(all small letters) which I believe you would have read in the documentation and many examples online.
The intuition I am guessing you are after is when doing conditional processing or applying filter on character variables with values in mixed cases meaning some are small letters and some big and some both.
For example country-- USA,Usa,usa, UsA
Let us suppose you wanna filter the records where country equals usa. Since values are case sensitive, you are prone to get unexpected results. Therefore to make it consistent, application of upcase/lowcase functions becomes handy like
Where upcase(country)=”USA” ; here the function temporarily converts all values to UPPER case(all CAPS) and then checks for condition to do the filtering. I hope this gives some intuitive sense beyond what the function does. HTH
While investigating those functions you may also want to investigate PROPCASE.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.