BookmarkSubscribeRSS Feed
hua
Obsidian | Level 7 hua
Obsidian | Level 7

Hello All,

 

I have several columns: station year a b c d e f g ....

And I want to sum a,b,c,d,e,f,g,...  by year.

DO I need to use macro or sql? And how to do it?

 

I would greatly appreciate it if any one can have any ideas!

Thanks a lot!

6 REPLIES 6
LinusH
Tourmaline | Level 20
SQL
MEANS/SUMMARY
Data never sleeps
hua
Obsidian | Level 7 hua
Obsidian | Level 7
Do you know how to do sql?
hua
Obsidian | Level 7 hua
Obsidian | Level 7
Thank you!
Tom
Super User Tom
Super User

Use PROC SUMMARY.

proc summary  data=have nway ;
  by station year;
  var  a b c d e f g ....;
  output out=want sum= ;
run;
hua
Obsidian | Level 7 hua
Obsidian | Level 7
Thanks you!
output out=want sum=a_sum b_sum c_sum ... ;
Is this correct? Will this give me the corresponding sum for all the variables?

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 814 views
  • 0 likes
  • 4 in conversation