BookmarkSubscribeRSS Feed
uselessprogress
Calcite | Level 5

I was wondering If there is a way to remove duplicate column values without removing the entire row. This is purely for formatting, and i'd just like to take a step out of my manual workflow.

Basically I'd like to turn this:

LocationDepartments
Location 15400
Location 15401
Location 25402
Location 25403

Into this:

LocationDepartments
Location 15400
5401
Location 25402
5403

Thanks.

3 REPLIES 3
Steelers_In_DC
Barite | Level 11

Here you go:

data have;

infile cards dsd dlm=',';

length location $10.;

input Location $ Departments $;

cards;   

Location 1,5400

Location 1,5401

Location 2,5402

Location 2,5403

;

run;

proc print data=have;id location;by location;

Cynthia_sas
Diamond | Level 26

Hi,

And, PROC REPORT will do this for you too.

cynthia

proc report data=have nowd;

  column location departments;

  define location / order;

  define departments /display;

run;

Jagadishkatam
Amethyst | Level 16

Alternatively you could achieve the same in a datastep by

data want;

set have;

by location;

if not first.location then location='';

run;

Thanks,

Jag

Thanks,
Jag

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1309 views
  • 0 likes
  • 4 in conversation