BookmarkSubscribeRSS Feed
HarinathReddy
Calcite | Level 5

base sas create derived veriable in lab data set increase >=20% and aval>uln how to create?

3 REPLIES 3
HarinathReddy
Calcite | Level 5

using base sas to create derived veriable critfn=1, in lab data set using condition ; if increase >=20% and aval>ULN how to create?

SteveDenham
Jade | Level 19

Would this not simply be a simple IF-THEN-ELSE statement?

if increase>=0.2 and aval>uln then critfn=1;

     else critfn=0;

Where increase, aval, and uln are previously defined on the data set.

Steve Denham

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1371 views
  • 0 likes
  • 2 in conversation