BookmarkSubscribeRSS Feed
BrahmanandaRao
Lapis Lazuli | Level 10
proc import datafile="C:\Users\xxxx\Desktop\Rajadhani_Trains.xlsx"
out=rajadhani
dbms=xlsx 
replace ;
getnames=yes;
quit;

Screenshot 2025-02-25 132458.png

 

Hi Guys,

Here i have excel file in Tr_No variable observations have embeded spaces please see above marking so i want remove embaded space while import that file 

1 REPLY 1
Patrick
Opal | Level 21

Afaik not possible. You need to post process the data. Something like:

data rajadhani;
  set rajadhani;
  tr_no=compress(tr_no);
run;



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
  • 1 reply
  • 471 views
  • 0 likes
  • 2 in conversation