What is difference between (a-z) and (a--z)
Answer Posted / lucyl
data k;
input a1 a2 a4 a3;
datalines;
1 2 3 4
5 6 7 8
;
run;
proc print data=k;
var a1-a3;
run;
proc print data=k;
var a1--a3;
run;
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Explain the special input delimiters used in sas programming.
How can I remove header from output data set?
How to test the debugging in sas?
What are the differences between sum function and using “+” operator?
Which date function advances a date, time or datetime value by a given interval?
What is the difference between %put and symbolgen? : sas-macro
how can you import .csv file in to sas? : Sas programming
What are common programming errors committed in sas
What is the maximum length of the macro variable?
what is sas and what are the functions? : Sas-administrator
What are the statements that are executed only?
Give some examples where proc report’s defaults are same as proc print’s defaults?
Given an unsorted data set, how to read the last observation to a new data set?
Mention what is SAS data set?
explain the key concept of sas? : Sas-administrator