Forum Discussion
jrpoli2000
8 years agoFrequent Visitor
Value adjustment
Can anyone please help me with 2 measures or calculated columns to make adjustments on INVOICE PAYMENT and PENDING columns. ADJUSTED INVOICE PAYMENT column will only calculate the rows with negati...
- 8 years ago
Not an amazingly elegant solution, but this should work:
Add two calculated columns as below -
Adjusted Invoice Payment = IF ( Pending < 0 , InvoicePayment - Pending, InvoicePayment )
Adjusted Pending = IF ( Pending < 0, 0, Pending )
Hope this helps!
JDLee23
8 years agoHelper I
Not an amazingly elegant solution, but this should work:
Add two calculated columns as below -
Adjusted Invoice Payment = IF ( Pending < 0 , InvoicePayment - Pending, InvoicePayment )
Adjusted Pending = IF ( Pending < 0, 0, Pending )
Hope this helps!
- jrpoli20008 years agoFrequent Visitor
Thanks a lot!!! You just cured my weeklong headache:smileyhappy: