Hi,
Hi have this table:
COD FLAG
1 N
1 N
1 S
2 N
2 N
3 S
3 N;
I need to create a new table with a new column (chk) that verify the variation of FLAG Variable in the same group of COD coloumn:
if FLAG change in the same group of COD, the variable chk is set to 1 to all group of cod:
here there is the example:
COD FLAG CHK
1 N 1
1 N 1
1 S 1
2 N 0
2 N 0
3 S 1
3 N 1
I create this sas code:
data mytable;
retain _flag;
retain _chk 0;
set a;
by COD;
if first.cod then do; _flag = flag; chk=0; end;
else if _flag ne flag
then do;
_flag=flag;
chk = 1;
end;
run;
it works but i don't get the table that I need.
how can I do that?
proc sql;
create table want as
select *,case when count(distinct flag)>1 then 1 else 0 end as chk
from mytable
group by cod;
quit;
proc sql;
create table want as
select *,case when count(distinct flag)>1 then 1 else 0 end as chk
from mytable
group by cod;
quit;
data have; input COD FLAG $; cards; 1 N 1 N 1 S 2 N 2 N 3 S 3 N ; run; proc sql; create table want as select *,case when count(distinct flag) gt 1 then 1 else 0 end as chk from have group by cod; quit;
Xia Keshan
Thank you,
all of you!!!
Thanks!
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.