One table was created to have all possibilities of Location_Number, Date, Hour, Quarter_Hour.
I have three tables with all four of these values and I want to pull the specefic revenue amount in each table that corresponds to the Location_Number, Date, Hour, and Quarter_Hour.
Can someone give me some sample code to get moving on joining up all Revenue from these three tables while keeping the revenue seperate from each table and revenue it pulls. (Example Pull Revenue A table when (Location_Number=Date=Hour=Quarter_Hour) then output name as Revenue A Table, repeat for Revenue B Table, Revenue C Table)
It is not clear enough what you want to get.
As much as I understand you need somthing like:
data RevenuA revenuB revenuC;
merge tableA(in=inA rename=(revenue=revA))
tableB(in=inB rename=(revenue=revB))
tableC(in=inC rename=(revenue=revC))
;
by Location_number date hour Quarter_Hour ;
if inA (... and conditions ...) then do;
revenu = revA;
output RevenuA;
end;
if inB (... and conditions ...) then do;
revenu = revB;
output RevenuB;
end;
if inC (... and conditions ...) then do;
revenu = revC;
output RevenuC;
end;
RUN;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.