BookmarkSubscribeRSS Feed
Ujjawal
Quartz | Level 8

I want to calculate distinct count by group. When i tried to create aggregate measure and use distinct count, it returns an error as variable is character (see the variable 'code' below)

 

ID flag Code
1 0 B1
1 0 B1
1 0 B2
1 1 A1
1 1 A1
1 1 A1
2 0 D1
2 0 D1
2 1 C1
2 1 C1

 

I want to generate the following output in cross tab. For ID =1, it should return this output (i.e. distinct count of variable 'Code'.

 

flag Status
0 2
1 1

 

I would put ID in the drop down.

1 REPLY 1
KachiM
Rhodochrosite | Level 12

Do you want a data step program?

 

You may presort the dataset by ID and flag. I used the grouped data by using NOTSORTED option in BY statement.

 

data want;
   do until(last.flag);
      set have;
      by id flag notsorted;
      if first.flag then do; pre_Code = Code; count = 1; end;
      else if pre_Code ^= Code then count + 1;
   end;
keep id flag count;
run;

 

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

Register now!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 994 views
  • 0 likes
  • 2 in conversation