FDMEE Import Format Expression in Account Column
Hi,
I have loaded single line of data for my import format and it was loaded successfully = amount = 43.55
Now I want to divide the amount = 1/43.55 = 0.022 (for exchange rates)
I have used below given import script to handle and assigned to Amount Column = Expression (Script=divCurrValue.py), but receiving error while importing.
--------------------------------------------------------
def divCurrValue(strField, strRecord):
return 1 \ strField
--------------------------------------------------------
Request you suggest me