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

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 767 views
  • 0 likes
  • 2 in conversation