Formula for button
There is a Table1 where information is entered and when the button is pressed, the information is written to another table - table2
Here is part of the formula
Date := xCurrRec.Date;
'Cash +' := xCurrRec.'.CASH.';
'USD +' := xCurrRec.'.USD.';
'EU +' := xCurrRec.'.EU.';
'POU +' := xCurrRec.'.POU.';
'VISA +' := xCurrRec.'.VISA.';
The table1 also has a field CUSTOMER
What Codes needs to be added to the formula, and what field needs to be created in the table2 to display the customer's name?
I have a long formula, so I don’t show it in full. It works correctly, i just need to add one more function, transferring the name of Customer
2 replies
-
if you want just the customer name because you are using a simple text field (called CustomerName): replace with appropriate field names
'CustomerName' := xCurrRec.Customer.Namefield
or do you want to recreate the link to List of Players?
'Customer' := xCurrRec.Customer
Content aside
- Status Answered
- 1 yr agoLast active
- 2Replies
- 46Views
-
2
Following