BookmarkSubscribeRSS Feed
tejeshwar
Calcite | Level 5
Hi,

I am trying to create a cluster on a large data in an SPDS environment based on actual dates. I am trying to create 24 members storing 24 months of history from a large SPD table "acquisition_tb" on libname "train". Also each member will store month worth of data based on a date named "entered_date". for ex: if the entered_date is between 01 - 29th Jan then store in member 1, if between 30th Jan-28th Feb then store in member 2. Can anyone share a SAS syntax to accomplish the same.

Thanks so much for the help.

Regards,
Tej Message was edited by: tejeshwar
1 REPLY 1
AngelaHall
SAS Employee
In Base SAS you can output a single data set into to multiple tables with one DATA step. This might be sufficient for you when attempting to parse out tables.
Here is an example:


data test1 test2;
set sashelp.shoes;
if region='Canada' then output test1;
else if region='Africa' then output test2;
run;


~ Angela
http://sas-bi.blogspot.com

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

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