How would you remove a format that has been permanently
associated with a variable?
________________
Answer Posted / name is no need
we can remove the format by using procdatasets:
Procdatasets;
modify <data set name>;
format <variable name>(which variable format needs to
modify>;
run;
quit;
| Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
how to read the variables in sas? : Sas-administrator
What do the SAS log messages "numeric values have been converted to character" mean?
Name few SAS functions?
Give an example where SAS fails to convert character value to numeric value automatically?
What function CATX syntax does?
What is the command used to find missing values?
Assuming {et} is randomly drawn from N(0,1) and e0 = 0, generate 200 observations of xt = et − 0.5e(t−1) and draw a line graph of xt.
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.
what is transformation in sas data integration? : Sas-di
Do you know the features of sas?
I need level 2 to 5 sas using companies in india
What are the difference between sas functions and procedures?
please can you tell me that in companies sas work are doing by through sas coding or sas wizard ??
How do you test for missing values?
what is sas application server? : Sas-di