Please help me! this is the last part I need to figure out for this program(crossing fingers)
When I import the csv file there are dates in the format of "ddmmmyy"
What i'm planning on doing is an import of the csv file into dataset that exactly mimics another table. Then to do a merge so that the records in the csv file get appended to the table.
This is what i have so far.
data work.new;
length house $10;
length condo $10;
length start_date ???;
infile "c:\project.csv" dsd missover firstobs=2;
input house $ condo $ start_date???;
run;
Can someone please help me with the ???
When I import the csv file there are dates in the format of "ddmmmyy"
What i'm planning on doing is an import of the csv file into dataset that exactly mimics another table. Then to do a merge so that the records in the csv file get appended to the table.
This is what i have so far.
data work.new;
length house $10;
length condo $10;
length start_date ???;
infile "c:\project.csv" dsd missover firstobs=2;
input house $ condo $ start_date???;
run;
Can someone please help me with the ???