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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.