In DTSDestination("Ann_Non_Comm_Prem") = FormatNbr(DTSSource("Ann_Non_Comm_Prem"),6,2) converting the input 0.0000 as 000000 and 99.0000 as 009900 what is the equivalent function to convert column value as 99.0000 and required output as 009900 in informatica.
Ex : for input 99.0000 need output as 009900
I used LPAD(COL1*10000,6,'0') but it is not working.
Please suggest a solution.