BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
rarahsghsdd
Calcite | Level 5

Hi SAS Community,

 

 

I am working on SAS Visual Analytics and Struck in some logic. I have a column of character which has three flag "0","1" and "DROP".

i need to count the flag based on conditions of flag. I working on Cross tab  and i need to count the "0" flag against different Shops.

I tried custom category but it wont work as measure in cross tab and i also tried this Count [_ByGroup_] (( 'New_Code'n[Raw] Contains '0' )) and other different approach but it is giving error. please suggest some solution.

 

 

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
FredrikE
Rhodochrosite | Level 12

You should be able to do that with a calculated measure.

 

if [flag] = '0' then 1

else 0

 

and then use this measure in your calculations?

//Fredrik

View solution in original post

1 REPLY 1
FredrikE
Rhodochrosite | Level 12

You should be able to do that with a calculated measure.

 

if [flag] = '0' then 1

else 0

 

and then use this measure in your calculations?

//Fredrik

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!

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
  • 929 views
  • 0 likes
  • 2 in conversation