How to read multiple excel sheets from a single excel file
at once????
Answer Posted / vinodnagesh
BY USING DDE TRIPLET
| Is This Answer Correct ? | 4 Yes | 2 No |
Post New Answer View All Answers
how can you import .csv file in to sas? : Sas programming
What commands are used in the case of including or excluding any specific variables in the data set?
: and & modifiers.
Explain proc univariate?
explain the use of % includes a statement in sas? : Sas-administrator
What can you learn from the SAS log when debugging?
why a stop statement is needed for the point= option on a set statement?
What do you know about sas data set?
Approximately what date is represented by the SAS date value of 730?
I have a dataset concat having variable a b & c. How to rename a b to e & f?
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.
how does sas handle missing values in procs? : Sas programming
Tell me more about the parameters in macro? : sas-macro
What is a method for assigning first.VAR and last.VAR to the BY group variable on unsorted data?
what are input dataset and output dataset options? : Sas programming