Below is a sample of the data I get. Basically I want 1 row per Weekending so CLLS and TFS are on 1 row per date.
Weekending | CLLS | TFS |
9-Jul-23 | 25629 | |
9-Jul-23 | 187061 | |
16-Jul-23 | 5227 | |
16-Jul-23 | 906430 | |
23-Jul-23 | 48448 | |
23-Jul-23 | 515269 | |
30-Jul-23 | 23582 | |
30-Jul-23 | 593329 |
Desired result.
Weekending | CLLS | TFS |
9-Jul-23 | 187061 | 25629 |
16-Jul-23 | 906430 | 5227 |
23-Jul-23 | 515269 | 48448 |
30-Jul-23 | 593329 | 23582 |
Are there more variables involved in the data set?
Are the variables CLLS and TFS numeric?
If the answer to the first is NO and Yes to the second this may be the easiest:
Proc summary data=yourdataset nway; class weekending; var clls tfs; output out=want (drop=_: ) max=; run;
If there are other variables you will need to provide a more complete example and what is done with the other variables.
Are there more variables involved in the data set?
Are the variables CLLS and TFS numeric?
If the answer to the first is NO and Yes to the second this may be the easiest:
Proc summary data=yourdataset nway; class weekending; var clls tfs; output out=want (drop=_: ) max=; run;
If there are other variables you will need to provide a more complete example and what is done with the other variables.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.