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