I am trying to import a text file with tab delimiter which has two variables.
ID var234488hhfyggyhuur_jhjhuytsdrkkjuht_kjy
1 5,6
2 10
3 122,5
4 0,6
I am able to import the file but not in the right format of the seciond variable and also the variable name is more than 32 char long.
data exam1;
infile "C:\Users\gght\Desktop\today.txt" firstobs=2 dlm='09'x ;
input id 3. var234488hhfyggyhuur_jhjhuytsdrkkjuht_kjy numx12.2;
run;
var2344...
field called exactly that? Simply rename it to something shorter & clearer. – Chris J