BookmarkSubscribeRSS Feed
hhchenfx
Barite | Level 11

Hi Everyone,

I import a csv file with the following first row:

 

Project_name,Labor Category,Location,Project Type,Pay Code,,,,,,,,,,,,,,,,Totals

 

SAS takes all column name up to Pay Code correct. Then column name turn to "_", then correctly assign VAR7, VAR8... VAR20, Totals

 

Why my VAR6 turn to "_" ? Please help me to fix.

 

Thank you so much.

 

HHCFX

 

 


	proc import datafile="C:\\_temp\15days.csv"
	out=Utime dbms=csv replace; getnames=yes;run;
6 REPLIES 6
novinosrin
Tourmaline | Level 20

Please check if there's an embedded blank or some kind in the variable name where proc import pads with _

Tom
Super User Tom
Super User

I see 20 commas in that line. So it looks like you have 21 columns. 

What names do you WANT SAS to use for the columns that don't have headers?

Project_name,Labor Category,Location,Project Type,Pay Code,,,,,,,,,,,,,,,,Totals

If you have a simple text file then just write your own data step to read it. No need to use PROC IMPORT and force SAS to guess what is in the file.

hhchenfx
Barite | Level 11

Hi,

The problem is that each time of import, the number of column changes. 

I will check my data again.

Thanks for your help.

HHCFX

Tom
Super User Tom
Super User

@hhchenfx wrote:

Hi,

The problem is that each time of import, the number of column changes. 

I will check my data again.

Thanks for your help.

HHCFX


How are you going to handle this variation? Not sure if PROC IMPORT helps that much, the resulting datasets are still going be different if the input files are different.

 

Is there a pattern to the variation?  For example perhaps the number of columns represents the number of samples taken or the number of days or months of measurement.  If there is a pattern then you can write a SAS program to handle the files.

 

Share examples of the text files, just enough lines (and columns) to show the pattern.  Paste the lines of the file into the editor using the pop-up window you get when you click on the {i} (insert code) button on the editor menu bar. That will prevent the forum editor from treating the data as words and sentences and messing up the formatting.

hhchenfx
Barite | Level 11

Thanks, Tom.

I will do it.

HHC

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 6 replies
  • 523 views
  • 1 like
  • 4 in conversation