BookmarkSubscribeRSS Feed
manya92
Fluorite | Level 6

What does lowcase and upcase fucntion mainly do ?

 

3 REPLIES 3
Cynthia_sas
Diamond | Level 26
Hi:
Have you tried them in a program? Or looked them up in the documentation. Here's the alpha list: http://go.documentation.sas.com/?docsetId=allprodslang&docsetTarget=syntaxByType-function.htm&docset...

Cynthia
novinosrin
Tourmaline | Level 20

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

ballardw
Super User

While investigating those functions you may also want to investigate PROPCASE.

 

 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1382 views
  • 0 likes
  • 4 in conversation