BookmarkSubscribeRSS Feed
jeffgreen
Fluorite | Level 6

Hi everyone,

 

I currently have a csv file, and I am wanting to name my columns using the array function. 

 

I have 37 variables- the first variable is treatment, and the next 36 are T1-T36.

 

How would I go about naming my columns?

Sorry I am new to SAS, this may sound like a dumb question.

1 REPLY 1
Kurt_Bremser
Super User

You can do this in the INPUT statement:

input treatment t1-t36;

If you need to add informats (e.g. for character variables), use brackets:

input treatment :$30. (t1-t36) (:$20.);

 

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore Now →
Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1083 views
  • 0 likes
  • 2 in conversation