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 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

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
  • 1 reply
  • 816 views
  • 0 likes
  • 2 in conversation