I am trying to append two datasets (one and two) that have 6 columns:- Class,Route,Date,Time,Name,Place and Arrival
In file one, Time,Arrival and Place are character and these variables are Numeric in the data set two.
In the dataset two the informat and the format for these numeric variables is:Time8. (for Arrival),Date9. (for Date) and Time8. (for Time). The other three variables viz. Route,Class and Name are character in both the datasets.
I use the code:-
data combine;
merge one two;
by Name;
run;
and get the error that Time,arrival and Place are defined as both character and numeric.
Kindly Suggest.
Sid