Hi I'm new on this forum but couldn't find anything after a search regarding a problem I have with using the nlmny informat function while inputting data in from an excel spreadsheet
The code is below but the table result comes out as null in every observation
data ptd;
infile xl3 notab dlm='09'x dsd missover;
format field1 $8. field2 14.2 field3 $7.;
input field1 $ a $field3 $ c $ d$ field2 nlmny14.2 ;
run;
Field2 is read in from excel and currently has monetry format fields which I need to calculate on.
Can anyone please help?
Thanks,
Brian