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

I have a data set that looks like:

 

DirectionCUSTOMER_IDREGIONreg_Areg_BNET_SUPPLIED
1aA1.2
1aB1.3
1bA1.4
1bB1.5
2aA.46
2aB.47

 

and I want to delete the rows where the value in "region" coincides with a value of "." in that region, unfortunately I have a large number of regions and not all will show up in every query so I cant just list each region in a bunch of if statements is there any way to do a single if statement that looks like:

 

if "reg_"+value(region)=. then delete;

 

if not are there any methods other than just writing a long list of if statements?

 

Thanks! 

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hello @Daniel_MM,

 

Use the VVALUEX function:

data have;
input Direction CUSTOMER_ID $ REGION $ reg_A reg_B NET_SUPPLIED;
cards;
1 a A 1 . 2
1 a B 1 . 3
1 b A 1 . 4
1 b B 1 . 5
2 a A . 4 6
2 a B . 4 7
;

data want;
set have;
if left(vvaluex('reg_'||region))='.' then delete;
run;

View solution in original post

1 REPLY 1
FreelanceReinh
Jade | Level 19

Hello @Daniel_MM,

 

Use the VVALUEX function:

data have;
input Direction CUSTOMER_ID $ REGION $ reg_A reg_B NET_SUPPLIED;
cards;
1 a A 1 . 2
1 a B 1 . 3
1 b A 1 . 4
1 b B 1 . 5
2 a A . 4 6
2 a B . 4 7
;

data want;
set have;
if left(vvaluex('reg_'||region))='.' then delete;
run;

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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