Hi,
data report_week_oct_dec_data;
set report_04_01_2021(In = in1)
report_11_01_2021(In = in2)
report_18_01_2021(rename = (date = chardate))
report_25_01_2021(rename = (date = chardate))
report_28_12_2020(rename = (date = chardate));
if not missing (chardate) then date = input(chardate,yymmdd10.);
if in1 or in2 then date = input(put(date,f8.),yymmdd10.);
format date yymmdd10.;
run;
the datatype of date in the 1st two data sets it is best32. and in the last 3 datasets it char10.
After running this code, the date column is coming blank.
As I have been running the code on VDI, I am not privilleged to copy/snip the log.
However, I am writing the log for this part of code.
Note : Invalid argument to function input at line 476 column 176.
In1=1 In2=0 date=. ccsid = 1134567 chardate= _Error_ =1 _N_=20
Please help!
... View more