Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need a field, Expense, to be multiplied by (-1) at the time of importing itself, is that possible? I do not want to write that in the expression for each object throughout the file, which is what i do at present. Following is a snippet of the code:
Load*,
[Expense],
from ...abc.XLS
Try this.
Load *,Expense * -1 as New_Expense
From abc.XLS
Regards,
Kaushik Solanki
Try this.
Load *,Expense * -1 as New_Expense
From abc.XLS
Regards,
Kaushik Solanki