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

Hi I need help with below, i need to use proc sql to exclude rows where ('user_type' =user AND amount > 0 )

 

DATA HAVE                                            DATA WANT

 

user_type            amount                       user_type                 amount

 

user                     500                             system                     200

system                 200                             user                         -300

user                      -300                            system                    -300

system                 -300

user                      1000

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star
where not (user_type = 'user' and amount > 0);

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star
where not (user_type = 'user' and amount > 0);
Solly7
Pyrite | Level 9

Thank you

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1042 views
  • 0 likes
  • 2 in conversation