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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.