BookmarkSubscribeRSS Feed
VRD
Calcite | Level 5 VRD
Calcite | Level 5
btext1btext2btext3trt1trt2trt3
sample1XXXXXXXXX
sample1ana1XXXXXXXXX
sample1ana1ban1XXXXXXXXX
sample1ana1ban2XXXXXXXXX
sample1ana1ban3XXXXXXXXX
sample1ana1ban4XXXXXXXXX

texttrt1trt2trt3
sample1XXXXXXXXX
ana1XXXXXXXXX
ban1XXXXXXXXX
ban2XXXXXXXXX
ban3XXXXXXXXX
ban4XXXXXXXXX

can any one help me in this?

3 REPLIES 3
Haikuo
Onyx | Level 15

Look up Coalescec() function and Keep/Drop statement.

Haikuo

stat_sas
Ammonite | Level 13

data want(drop=btext2 btext3);

set have;

if btext2 ne ' ' and btext3=' ' then btext1=btext2;

if btext3 ne ' ' then btext1=btext3;

run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 3 replies
  • 1197 views
  • 0 likes
  • 4 in conversation