BookmarkSubscribeRSS Feed
Kenmar
Calcite | Level 5

I have an ID variable that I want to be able to reverse for privacy. Say I have a list of ID's like 1234, is there an easy way to make that observation 4321?

 

2 REPLIES 2
Reeza
Super User

The reverse() function ...

https://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000245941.htm

If your variable is numeric convert it to character first using PUT(var, 8.)

ballardw
Super User

If you would like something a bit more obscure and not subject to the issues of one id= 123 and another 321 in your data try the various bitwise logical functions if your ID is numeric.

 

For example look at

data _null_;
   do x= 10 to 1010 by 10 ;
   y = bnot(x);
   
   z = bnot(y);
   put y= z= ;
   end;
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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 1575 views
  • 0 likes
  • 3 in conversation