Data Prep Sheet

Action Principale : fmtLibCntlIn

Preparation Code

Script awaiting validation
Copied!
1PROC FORMAT;
2 value $gender 'M'='Male' 'F'='Female';
3 value agegrp low-30='Young' 31-high='Mature';
4RUN;
5 
6/* Exportieren in eine Kontrolltabelle */
7PROC FORMAT cntlout=work.myfmtcntl;
8RUN;
9 
10/* Hochladen der Tabelle nach CAS */
11cas mySession sessopts=(caslib="casuser");
12LIBNAME casuser cas caslib="casuser";
13 
14DATA casuser.fmt_cntl_table;
15 SET work.myfmtcntl;
16RUN;
Actions using this script
  • sessionProp fmtLibCntlIn En cours
  • No other action uses this exact script.