BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
PaigeMiller
Diamond | Level 26

This code

ods listing;

proc iml;

names = {Jenny, Linda, Jim, Samuel};

print names;

quit;

ods listing close;

produces output with capital letters, why?

The SAS System 

names

JENNY
LINDA
JIM
SAMUEL

--
Paige Miller
1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

When you specify a matrix of character values, use quotes if you want to preserve case. Otherwise the values are UPCASEed. So to preserve case, use

names = {"Jenny", "Linda", "Jim", "Samuel"};

If you read data from a data set, you'll automatically get whatever case is in the data:

use sashelp.class;

read all var {"Name"};

close sashelp.class;

print Name;

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

When you specify a matrix of character values, use quotes if you want to preserve case. Otherwise the values are UPCASEed. So to preserve case, use

names = {"Jenny", "Linda", "Jim", "Samuel"};

If you read data from a data set, you'll automatically get whatever case is in the data:

use sashelp.class;

read all var {"Name"};

close sashelp.class;

print Name;

PaigeMiller
Diamond | Level 26

Well, thanks, I doubt I would have found that in the help files.

--
Paige Miller

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 2 replies
  • 1537 views
  • 0 likes
  • 2 in conversation