Can i do something like
='Reference No(s):'+ ([ARInvoice.RefNbr])
it will display all the Reference number in the Payment? cause i need it in one line

Can i do something like
='Reference No(s):'+ ([ARInvoice.RefNbr])
it will display all the Reference number in the Payment? cause i need it in one line

Best answer by miguel80
Adding to what Josiah said:
Create the variable, which I see you have. Add this to it in the ValueExpr section:

=Assign(‘$ReferenceNos’,$ReferenceNos+’ ‘+ARAdjust.AdjdRefNbr)
Make sure it’s in the Detail section. On your question:
I think something like this would work Assign($ReferenceNos, $ReferenceNos + ‘+’ + [ARInvoice.RefNbr])
… you are missing the ‘ ‘ on the first part of the formula.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.