BookmarkSubscribeRSS Feed
SASPhile
Quartz | Level 8

There are two datasets A &B.The common field between them is cust_id.

Table A have the date filed in format 2013-09-26   and table B date filed in format 20130926

How to get records from table B  that are 30days prior to date in table A for the same cust id?

1 REPLY 1
LinusH
Tourmaline | Level 20

First, when you say format, do you mean that the dates are stored as CHAR? If they are stored as SAS dates, the format doesn't matter in the join logic.

Join criteria:

a.cust_id = b.cust_id and b.date between a.date and a.date -30

Be aware that you will be noted of that SAS can't optimize these kind of criteria, but if your data isn't too large, it shouldn't be a problem.

Data never sleeps
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
  • 1 reply
  • 1190 views
  • 3 likes
  • 2 in conversation