BookmarkSubscribeRSS Feed
xiaoqiuyin
Calcite | Level 5

Hi everyone, I have dataset A

I want it to be   Y=Y/Lag(Y) , like Dataset B, any suggestions?

1 REPLY 1
mohamed_zaki
Barite | Level 11

data want (drop=lAZ);

set have;

lAZ=lag(AZ);

AZ=AZ / lAZ;

run;

How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 1215 views
  • 1 like
  • 2 in conversation