BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Badshaah
Obsidian | Level 7

If we have past all month file and , new file with current month then how we calculate the that current month from one file and last month from all month file
Percent difference

1 ACCEPTED SOLUTION

Accepted Solutions
gamotte
Rhodochrosite | Level 12

Hi,

 

data old new;
    infile datalines dlm=",";
    format month x 2.;
    input month x;
    if month=4 then output new;
    else output old;
    datalines;
1,10,
2,5,
3,12,
4,15
;
run;

data want;
    set old new end=a;
    y=lag(x);

    if a then do;
        diff=100*(x-y)/y;
        output;
    end;

	drop y;
run;

View solution in original post

3 REPLIES 3
gamotte
Rhodochrosite | Level 12

Hi,

 

data old new;
    infile datalines dlm=",";
    format month x 2.;
    input month x;
    if month=4 then output new;
    else output old;
    datalines;
1,10,
2,5,
3,12,
4,15
;
run;

data want;
    set old new end=a;
    y=lag(x);

    if a then do;
        diff=100*(x-y)/y;
        output;
    end;

	drop y;
run;
Badshaah
Obsidian | Level 7
Grand salute gamotte.

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1493 views
  • 1 like
  • 3 in conversation