BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Rakeon
Quartz | Level 8

Hi,

I have a problem to import this file csv with these column:(in a I have the point, while in b I have the comma)

a          b                  

1          1,048

           356,8

3          6764

0.1       564

4          0,0019

1          0,0678

Obviously, I will have to do, some arithimetics operation between this coloumn and with other column from other table with COMMAX7.3 format.

have you any idea how to build the input statment in a data step?

1 ACCEPTED SOLUTION

Accepted Solutions
art297
Opal | Level 21

Can't u just use the commaxw informat?  e.g.:

data have;

  input a  b;

  informat b commax7.;

  format b best32.;

  cards;

1          1,048

           356,8

3          6764

0.1       564

4          0,0019

1          0,0678

;

View solution in original post

3 REPLIES 3
art297
Opal | Level 21

Can't u just use the commaxw informat?  e.g.:

data have;

  input a  b;

  informat b commax7.;

  format b best32.;

  cards;

1          1,048

           356,8

3          6764

0.1       564

4          0,0019

1          0,0678

;

Rakeon
Quartz | Level 8

Thanks!

art297
Opal | Level 21

Of course, if your csv is actually comma delimited as well, you'll have to account for the delimiter.  e.g., something like the following should work:

data have;

  infile cards dlm='~';

  input @;

  _infile_=substr(_infile_,1,find(_infile_,',')-1)||"~"||

   substr(_infile_,find(_infile_,',')+1);

  input a  b;

  informat b commax7.;

  format b best32.;

  cards;

1,1,048

,356,8

3,6764

0.1,564

4,0,0019

1,0,0678

;

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 3 replies
  • 1328 views
  • 3 likes
  • 2 in conversation