data have1;
input folder1 :$60. ;
cards;
F:/Drive1/Dataset/Table1
F:/Drive2/Dataset/Table2
F:/Drive3/Table
F:/Drive4
;
data have2;
input folder2 :$60. linux $60.;
cards;
F:/Drive1 /sas/data/drive1
F:/Drive2 /sas/data/drive2
F:/Drive1/Dataset /sas/data/dataset
F:/Drive2/Dataset /sas/data/dataset
F:/Drive3/ /sas/data/drive3
;
proc sql;
create table test as
select *
from have1, have2
where scan(folder1,1,'/') =scan(folder2,1,'/') ;
quit;
data a;
set test;
folder1 = tranwrd(folder1,folder2,linux);
run; You need to trim the values passed to the TRANWRD() function since SAS stores variables as fixed length. You asked tranwrd to find values with many trailing spaces that are probably not actually in the values.
linux_folder1 = tranwrd(folder1,trim(folder2),trim(linux));
try trimming folder2: trim(folder2)
In all your rows: scan(folder1,1,'/') ='F:'= scan(folder2,1,'/');
Did you mean:
where scan(folder1, -1,'/') = trim(folder2)
You need to trim the values passed to the TRANWRD() function since SAS stores variables as fixed length. You asked tranwrd to find values with many trailing spaces that are probably not actually in the values.
linux_folder1 = tranwrd(folder1,trim(folder2),trim(linux));
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.