Hello, everyone!
I have variables in my CSV data, in date format like the calving date of 17/06/2020.
I do know how SAS can read all the CSV data.
I used this code to enter my data
filename BSMB'C:\Users\Ebtissem\Desktop\BSMB\ebtissem.csv';
data farm;
infile BSMB firstobs=2 dlm=';';
input Period THIPeriod Month THIIMonth ID breed Parity DIMMilk TOTALMilk FAT FM PROTEIN PM SC SCS Dryingperiod Gestationperiod Nins LastI Calvingdate previouscalving CCinterval ICIf IIIplus trpi Icoit Concprate diestrus metestrus estrus proestrus RT HR RR PS;
run;
PS: I write in red color the variables containing date format.
and here is the first two rows'screenshot of some observations in CSV data.
How can I input the variables in the write format and not obtain invalid data.
Thank you!