How do you convert basic cube to transaction cube and
transaction cube to basic cube?
No Answer is Posted For this Question
Be the First to Post Answer
% let A=3+4 what is result
What is the size of PDV?
. Which date advances a date, time or date/time value by a given interval?
How to create a permanent sas data set?
WHAT DOES A SAS SPECIFICATION DOCUMENT SDS CONTAIN ?
how can you improve the performance of a query, If it is excuting very slowly?
There is a field containing a date. It needs to be displayed in the format "ddmonyy" if it's before 1975, "dd mon ccyy" if it's after 1985, and as 'Disco Years' if it's between 1975 and 1985. How would you accomplish this in data step code? Using only PROC FORMAT
How would you identify a macro variable? : sas-macro
Explain what is data step?
How we will Developing new reports Using Data step programming and Macros ?
What is difference between Global n Local Macro Variables..?
Can you calculate the mean, median and mode of the following data set using data step logic? Don't use any function or procedure. data a; input age @@; datalines; 22 32 32 32 43 23 24 56 45 54 28 29 27 26 25 28 30 20 18 37 36 47 46 56 19 20 ; run; I have calculated the mean which i have posted in the answer section.