i have a macro variable var1,var2. i want titles for the each
macro variable separately? how it is possible?
Answer Posted / sasswarup
Titles or Lables?? Clarification required!
If titles, where it's required?
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How would you determine the number of missing or nonmissing values in computations?
what are the best practices to process the large data sets in sas programming? : Sas-administrator
How do you use the do loop if you don’t know how many times you should execute the do loop?
What are pdv and it functions?
describe the interaction table in sas di? : Sas-di
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.
If money were no object, what would you like to do?
What is the purpose of _character_ and _numeric_?
What are the five ways to do a table lookup in sas? : sas-grid-administration
Difference between SAS STATA & SPSS?
if the Id has more then two transcatiion then show the first observation, IF Id has only two observation then It show both the observation
Give some examples where proc report’s defaults are same as proc print’s defaults?
do you prefer proc report or proc tabulate? Why? : Sas programming
what are all the reports you generated in your recent project?
What is SAS?