BookmarkSubscribeRSS Feed
Sven4IBM
Fluorite | Level 6

I have a currency rates table with any dates. On the other site I've a table with any dates, weekdays, Weekend or Holiday. Now I join this table with currency rates by date. But for Weekend/Holiday I didn't got any results, so I would like to take the day before Weekend/Holiday.

 

Have you any ideas...

2 REPLIES 2
andreas_lds
Jade | Level 19

Can you post some example obs? Maybe lag/retain can be used.

s_lassen
Meteorite | Level 14

I guess what you want to do is something like this:

data want;
  merge rates table2;
  by date;
  rate=coalesce(rate,prev_rate);
  output;
  prev_rate=rate;
  retain prev_rate;
  drop prev_rate;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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
  • 2 replies
  • 366 views
  • 0 likes
  • 3 in conversation