BookmarkSubscribeRSS Feed
Hima
Obsidian | Level 7

Input:

PROMOTION                           TOTALS

TOTAL RECORDS                    3,329

TOTAL RECORDS ACCEPTED  3,089

TOTAL RECORDS REJECTED   240

Output:

PROMOTION                           TOTALS

TOTAL RECORDS                    3,329

TOTAL RECORDS ACCEPTED  3,089

TOTAL RECORDS REJECTED   240

Ratio                                        240/3089

3 REPLIES 3
Reeza
Super User

data have;

        input promotion  totals;

        cards;

1 3329

2 3089

3 240

;

data want;

        set have end=eof;

        output;

        prev_total=lag(totals);

        if eof then do ;

               promotion=4;

               totals=totals/prev_total;

                   output;

        end;

run;

proc print data=want;run;

Haikuo
Onyx | Level 15

Or this:

data have;

input (PROMOTION TOTALS) (:$&30.);

cards;

TOTAL RECORDS              3,329

TOTAL RECORDS ACCEPTED    3,089

TOTAL RECORDS REJECTED     240

;

data want (drop=_:);

   set have end=last;

   _c=input(lag(totals),comma7.);

   output;

   if last then do;

      totals=catx('/', totals,_c);

      promotion='Ratio';

      output;

    end;

run;

proc print;run;

Regards,

Haikuo

shivas
Pyrite | Level 9

Hi,

Try this...

data have;

input PROMOTION $25. TOTALS ;

cards;

TOTAL RECORDS             3329 

TOTAL RECORDS ACCEPTED    3089

TOTAL RECORDS REJECTED     240

;

proc transpose data=have out=test;

id promotion;

var totals;

run;

data final;

set test;

Ratio=TOTAL_RECORDS_REJECTED/TOTAL_RECORDS_ACCEPTED;

run;

proc transpose data=final out=tt;

run;

Thanks,

Shiva

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
  • 1281 views
  • 0 likes
  • 4 in conversation