Forum Discussion
coneill
New Contributor III
I had the same question! This is what I found worked:
1) In Data Sources, point the Amount to a row validator column*. This will NOT be the debit or credit amount column of data if that column might contain a zero for a valid row.
2) Update the 'Logical Operator for the Amount = Complex Expression, using the sample code shown below. NOTE: the first column of data is enumerated with a zero, not a one.
Dim DebitAmt as Double = api.Parser.DelimitedParsedValues(12).XFConverToDecimal
Dim CreditAmt as Double = api.Parser.DelimitedParsedValues(13).XFConverToDecimal
Dim NetAmt as Double = DebitAmt - CreditAmt
Return NetAmt
AK
2 years agoNew Contributor III
Hi,
Could you elaborate what does it mean by a row validator column?
Thanks
Related Content
- 3 years ago
- 3 months ago
- 12 months ago
- 10 months ago