Skip to main content

Data Mapper - Count based on condition

Comments

1 comment

  • David Paras

    Try the following

    count($Input_Invoice_Advanced_Database_Schema/DB/tblEDIInvoices/Orders[AmTx1>0.0000])

    The "Orders[AmTx1>0.0000] " will return orders where the AmTx1 value is greater than 0.0000. The count function will then return the number of records that fulfill that condition.

    0

Post is closed for comments.