Data Prep Sheet

Action Principale : addFmtLib

Preparation Code

Script awaiting validation
Copied!
1PROC FORMAT;
2 value $genderfmt 'M'='Male' 'F'='Female';
3 value agefmt 1-12='Child' 13-19='Teen' 20-64='Adult' 65-high='Senior';
4RUN;
5 
6/* Create a control data set from the formats */
7LIBNAME mycas cas;
8DATA mycas.myformats_table;
9 SET sashelp.vformat;
10 where fmtname in ('GENDERFMT', 'AGEFMT');
11RUN;
Actions using this script
  • sessionProp addFmtLib En cours
  • No other action uses this exact script.