find two consecutive dates

AbbasZavar22
AbbasZavar22 New Altair Community Member
edited November 2024 in Community Q&A
Hi there,
I have a data set of patients with their lab test results (+ the date of test).
Each patient may have several lab tests. I want to find the latest date of lab test (abnormal one) and the exact previous one (based on the date) for each patient.
Any recommendation on how I can get the latest date and the previous one (two consecutive dates)



Tagged:

Answers

  • MartinLiebig
    MartinLiebig
    Altair Employee
    Hi,
    I would group into collection by patient id use loop collection, sort by time and use Filter Example Range to take the last 2.

    BR,
    Martin
  • BalazsBaranyRM
    BalazsBaranyRM New Altair Community Member
    Hi!

    This will work as long as the last lab test is the last entry by customer. If not, you could use Aggregate to get the date of the latest positive lab test, self-join with this entry, and use Generate Attributes (e. g. the date_diff() function) to determine if the entries are later. These can be filtered out with Filter Examples. 

    Regards,
    Balázs 
  • AbbasZavar22
    AbbasZavar22 New Altair Community Member
    mschmitz  

    Could you please provide me with more explanation, step by step with the name of the operators? 
    Thanks a lot in advance