I am trying to load data with the data files attached,
this is my code
data Orders;
infile "C:/Users/100355202/Desktop/Orders.txt" dsd dlm = " ";
input OrderID CustomerID :$20. EmployeeID :$20. OrderDate :mmddyy10.
RequiredDate :mmddyy10. ShippedDate :mmddyy10. ShipVia Freight
ShipName :$20. ShipAddress :$20. ShipCity :$20. ShipRegion :$20.
ShipPostalCode :$20. ShipCountry :$20. ;
run;
this is what I should get as the output
but I am getting this as the output
Can you help me figure out what I am missing for it t work?
I am receiving these notes
could you try the tab delimitation '09'x
data Orders;
infile "C:/Users/100355202/Desktop/Orders.txt" dsd dlm = "09"x;
input OrderID CustomerID :$20. EmployeeID :$20. OrderDate :mmddyy10.
RequiredDate :mmddyy10. ShippedDate :mmddyy10. ShipVia Freight
ShipName :$20. ShipAddress :$20. ShipCity :$20. ShipRegion :$20.
ShipPostalCode :$20. ShipCountry :$20. ;
run;
That worked out, thank you.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.