BookmarkSubscribeRSS Feed
suresh123
Calcite | Level 5
whatever it there in datatset acct. So what i am trying to do is give start and end date as macro variable and pull records from from acct dataset and create seperate datasets for each month between start and end dates
Patrick
Opal | Level 21

@suresh123

You wrote earlier "Splitting to see each month reports"

 

Can you please let us know the whole story? What do you intend to do with these monthly data sets?

 

If all this splitting data is only to support monthly reporting then there is a good chance that you don't need to split the data at all. 

Using By Group processing allows for creation of multiple reports with a single Proc call, is easier to code, maintain and also processes more efficiently.

 

Sample code to illustrate the concept:

data have;
  do i=1 to 20;
    date='01Jan2018'd+i-1;
    output;
  end;
  format date date9.;
  stop;
run;

%let startDt=05Jan2018;
%let endDt  =10Jan2018;

options nobyline;
title "Report for Date: #BYVAL(date)";
proc print data=have noobs;
  by date;
  var i date;
  where date between "&startDt"d and "&endDt"d;
run;

 

 

suresh123
Calcite | Level 5
What if macros are given quotes

%let begin=‘20170101’;
%let end =‘20170501’;

How does loop works ?

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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.

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
  • 17 replies
  • 1335 views
  • 2 likes
  • 5 in conversation