BookmarkSubscribeRSS Feed
yudhishtirb
Calcite | Level 5

Hello Team,

 

I am just wondering what below step actually does

 

data strat.rep_raised_resolved;
set strat.rep_raised_resolved strat.rep_raised_resolvedtotal;
if portfolio = '' then portfolio="TOTAL";
run;

 

Is it merge or union or full outer join or something else ? Can we relate it with any PROC SQL ?

 

Please advice us here

 

Thanks In Advance

4 REPLIES 4
RW9
Diamond | Level 26 RW9
Diamond | Level 26

This isn't really a question.  You may want to learn SAS so you understand some of these basics.

For your code, it is doing two things:

1) it is setting the three datasets: strat.rep_raised_resolved strat.rep_raised_resolvedtotal, underneath each other starting from the left.  A bit like a union all statement in SQL, except that set expands the final dataset to incorperate all the variables found across the three datasets.

2) An if logic block decides if the variable portfolio is empty ('') and if so populates it with the string "TOTAL".

 

arodriguez
Lapis Lazuli | Level 10
Hi,

It is a "union all". The result dataset will contain all observation of both datasets.
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Just to add, its not quite a union all (unless by happenstance all datasets have the same structure).  Union all will fail if any of the datasets have more or less columns, and do implcit length alterations if needed.  Set will fail if datatypes are different for existing columns.

Loko
Barite | Level 11

Hello,

 

Just to add - union will also fail if datatypes are different for the same column

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 4 replies
  • 2130 views
  • 1 like
  • 4 in conversation