I am new to SAS, but I need to explain a strange behaviour. Could you help me understand this :
- With my user, when I use a format defined by my company, I get the a good result.
data Code_Desc;
set LIB.MY_TABLE;
DESC = put(Code, $cpy_desc.);
run;
- With another user, the same code, give a different DESC.
What could be the reason for these different results ? Is it possible that we have 2 format with the same name on the server and that it's not the same depending on the user ?
Thanks.
... View more