how to import HTML files into SAS datasets?
Answers were Sorted based on User's Feedback
Answer / harinath
html files are converted to flat flies like excel,txt,access
files and import the data in sas enviranment
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / chandrakanth
change the html file to excel file. let us say if the filename is first.html right click on the file and select rename and type first.xls. Now the file becomes excel and you can import wizard or Proc import
Right now I can think of this solution, there may be another easy one.
Let me know if you have any questions
| Is This Answer Correct ? | 0 Yes | 11 No |
what is the different between functions and procs that calculate the same simple descriptive statistics? : Sas programming
How to specify variables to be processed by the freq procedure?
Which is Best Institute for learning SAS BASE & SAS BI in Hyderabad? Can anyone suggest me ?
what type of graphs we will create(for 2+years candidates)?
How to select the observations randomly from a SAS dataset
What are the limitations for memory allocation for SAS variables
How you are maintaining sas programmes in your company...any specific version control software you are using? If so, tell me the name?
how to write code for left outer join in SAs using datastep?
calculate the sum of value using only DATA STEP. data count_; input year name $ value; cards; 2006 xxx 10 2007 yyy 12 2006 xxx 20 2008 yyy 15 2007 xxx 15 ; out put should be like this year name T_value ----------------------- 2006 xxx 30 2007 xxx 15 2007 yyy 12 2008 xxx 15
Have you ever linked SAS code, If so, describe the link and any required statements used to either process the code or the step itself?
i have a dataset with 100000 records. i want 100 records from that dataset and create a dataset.we need to pick the observations random order like 100obs,500obs,1020obs,1890obs,2565obs like that i need 100 obs in random order? how can we create this one?
how do you validate sas program?