Trying to use the LAG function in SAS to replicate a piece of code in a migration into SAS DI, however there doesn't seem to be the same function in SAS DI at all. Using SAS DI 4.21 currently, with a view to move up to 4.9 soon.
So my question is, is there an alternative way of replicating the following code in SAS DI:
DATA work.dm_chg_bal;
SET tmp_bal_chg;
FORMAT dt2 date9.;
acct_id2 = LAG1(acct_id);
app_suf2 = LAG1(app_suf);
dt2 = LAG1(start_dt);
RUN;
Cheers,
For this I would use a User Written transform. There is really no issue with doing this so long as you are diligent enough to perform the variable mapping - hence retaining the data lineage in metadata.
An explanation of this is available here.