Saved Bookmarks
| 1. |
How Would You Remove A Format That Has Been Permanently Associated With A Variable? |
|
Answer» we can remove the format by using proc datasets: Proc datasets; format <VARIABLE name>(which variable format needs to modify>; RUN; quit; we can remove the format by using proc datasets: Proc datasets; modify <data set name>; format <variable name>(which variable format needs to modify>; run; quit; |
|