I Would like to add multi captions to a table button ie name and address

If you read this:

… you will find this:

<bold>$1</bold>{REPORT TICKET DETAILS:'<br/>'+[EN.Customer]:(TEN.Table=$1) and (TCET=Customer) and T.RemainingAmount>0 }

$1 will be the Table Name
[EN.Customer] will be the Customer Name

If you want the Customer Address as well, then you would use this:

EC.<entity type>.<field name>

Assuming the Customer Custom Data Field is named “Address”, use this:

EC.Customer.Address

So the complete expression for Display Format might be:

<bold>$1</bold>{REPORT TICKET DETAILS:'<br/>'+[EN.Customer]+'<br/>'+[EC.Customer.Address]:(TEN.Table=$1) and (TCET=Customer) and T.RemainingAmount>0 }
1 Like