OHDSI Home | Forums | Wiki | Github

Drug Exposure End Date in Future

Hello,
We are running into an issue mapping a data asset that has drug end dates in the year 3001. We use the end date to calculate the days supply, however for many OTC drugs in the data asset there is no true end date so they default to a date far in the future. To avoid NULL values we are thinking of using the start date as the end date and default days supply to ‘1’. Just wondering if anyone else has run into this or has opinions/input on how to handle these scenarios. Thank you!

We have used the rules.

  • If the drug exposure from a procedure code then end_date = start_date
  • If the is an indication that the drug received via mail order then end date = start_date + 89 days
  • Otherwise the drug is assumed to be a pharmacy fill and end_date = start_date + 29.

You might also try to estimate end date if you have days supply or quantity.

We have also created a table with the drug identifier and average number of days for records that do have an end date and then would use this lookup table to determine the end date for records that did not have an end date or days supply.

Anyway these are some options

1 Like

Thank you, this is helpful!

t