Hello,
I am using a data step to import data from a csv file via the following code
---------------------------------------------------------------------------------------------------------
data lls_dat.p_impairment&einlesemonat;
infile 'Impairments.csv' dsd dlm=';' firstobs=3;
input Impairment : CommaX21.2;
format Impairment CommaX21.2;
run;
---------------------------------------------------------------------------------------------------------
The csv-File contains multiple values in the format 12.123.123, that shoud be importet as 12.123.123,00.
However they are imported as 121.231,23!?
What did I do wrong?
thx, Stefan
Get rid of the 2.
Get rid of the 2.
I tried that, but it still does not work 😞
You changed the INFORMAT?
input Impairment : CommaX21.0;
hmm, I think it does work after all, thanks 😉
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.