I am trying to apply a user defined format on a measure in my cube.After creating the format, I have added this to my proc olap code.
libname pr 'D:\Program Files\SAS\Config\Lev1\SASAPP\SASEnvironment\SASFormats';
options fmtsearch=(pr);
However this does not seem to have any affect on the measures in my cube , after some investigation I have came across this SAS Document.
http://support.sas.com/kb/11/390.html
Assuming that my format is similiar to the one that is shown in the document
proc format ;
value NACOMMA . = 'NA'
other=[comma15.]
;
run;
I Have created a calculated member as per the document, but I am getting an error message
"Formula error - The format specified in the PUT function is invalid or not found - in the "PUT" function"
Since I have placed the format in the specified directory this should be available to all the applications, Please let me know what could be the issue.
... View more