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

data have;

input age1 age2 age3 age4 age5 age6;

datalines;

11 22 33 44 55 65 

44 88 99 65 32 77

;

run;

 

data want ;

input age1 age2 age3 age4 age5 age6  final_age;

datalines;

11 22 33 44 55 65  65 

44 88 99 65 32 77  99

;

run;

;

run;

 

 

1 ACCEPTED SOLUTION
1 REPLY 1

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand in the Innovate Hub.

Watch 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
  • 899 views
  • 1 like
  • 2 in conversation