Hi,
Example, if you have the following format:
proc format
value $test
'a' = 'Access'
'd' = 'Decline';
run;
format example $test.;
This will provide the format name $test with a width of 6. If there is a value in the var example such as 'abcdefgh', then it'll be displayed as 'abcdef' and 'gh' will be truncated. How do you set the width of $test or did I misunderstand PROC FORMAT completely when it comes to width?
Thanks!