Hi Community,
still looking for solution, let me tell you what all I've done
Step1: In SAS EG I've written my SAS Code for Billion to INR conversion. Below is the code
libname dir 'C:\SAS\Config\Lev1\SASApp\SASEnvironment\SASFormats';
proc format library = dir;
picture INR low-high='00,00,00,00,000.00';
RUN;
/*data test1;
a=35353521212;
format a INR.;
run;
*/
options fmtsearch=(dir);
Step2: In "c:\\sas\config\lev1\sasapp\sas_usermods.cfg" I've added the following statements, when I'm trying to use them in SAS DataBuilder I'm getting an error. Plz refer the attachment
-set fmtlib1 "\\D1234\SAS\Config\Lev1\SASApp\SASEnvironment\SASFormats\"
-fmtsearch (fmtlib1.formats)
Guide me if I'm going wrong anywhere
Kind Regards,
Balraj.P
... View more