Skip to content
Advertisement

Select most recent record (with expiration date)

Let’s say that we have 2 tables named Records and Opportunities:

Records:

RecordID CustomerID CreateDate
777 1 1/1/2021
888 2 1/1/2021
999 1 2/1/2021

Opportunities:

OppID CustomerID OppCreateDate
10 1 12/31/2020
11 1 1/10/2021
12 2 2/1/2021
13 1 4/1/2021
14 1 8/5/2025

Desired Output:

RecordID CustomerID CreateDate #Opportunities
777 1 1/1/2021 1
888 2 1/1/2021 1
999 1 2/1/2021 1

As you can see, the Records table provides the first 3 columns of the desired output, and the “#Opportunities” column is created by counting the number of opportunities that happen after the record is created for a given customer.

Two key things to note on this logic:

  1. Only count opportunities when they occur within 6 months of a record.
  2. If another record is created for a customer, only count opportunities for the most recent record.

More specifically, OppID = 11 will get credited to RecordID = 777; 12 to 888; and 13 to 999. 10 and 14 will not get credited to either RecordID.

I wrote the below code, which does not take into account #2 above:

Any suggestions to incorporate #2 above and generate the desired output?

Advertisement

Answer

Decide on which #records row is related to an #Opportunities row based on #records.CreateDate

Returns

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement