How to convert HTML file into SAS dataset?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More SAS Interview Questions

If you could design your ideal job, what would it look like?

0 Answers   Oracle,


data data1; input dt account; format dt date9.; cards; 1745 1230 1756 1120 1788 1130 1767 1240 ; data data2; input startdt enddt total; format startdt date9. enddt date9.; cards; 1657 1834 12300 1557 1758 16800 1789 1789 12300 1788 1345 12383 1899 1899 13250 ; proc sql; create table data3 as select * from data1 as x left join data2 as y on x.dt>=y.startdt and x.dt<=y.enddt; quit; Here, we are getting cartision product. But,I want left join report consisting of this program. It should not get duplicate values. you can modify the program also.

0 Answers  


if you have 365 no of data set and each one having different variable from each other. how will you read by creating macros and create a single data set.

2 Answers  


I need help in merging two different datasets. I am merging by date and I want to propagate observations from one dataset to the corresponding dates. One dataset has a unique date for each day of the month, while the other dataset has same date for different patient visits. For example I want to spread an observation on the 31DEC2008 from one dataset to several observations with the same date on a second dataset for all the patients who visited on that date. I have tried to merge the two and the result is not what I wanted. Instead I get a dataset whereby all the dates have missing values where observations from the first datset should have spread.

1 Answers  


how do u test a pros sql(works or not) without executing it?

1 Answers   DELL, HSBC,


What is the basic structure of the SAS base program?

0 Answers  


Which are SAS Windows Clients & SAS Java Clients

3 Answers   TCS,


How can sas program be validated?

0 Answers  


what is Difference between PROC SQL JOINS and MERGE?

3 Answers   Accenture, Wipro,


What is the difference between an informat and a format? Name three informats or formats.

13 Answers   Accenture, IBM,


Which date function advances a date, time or datetime value by a given interval?

0 Answers  


How would you identify a macro variable? : sas-macro

0 Answers  


Categories