I can see that you have changed the workflow entity to members which means if you choose Create Related Record you will be able to select Membership Fees. Please note that you can't use both Formula and fields at the same time when creating a record, i suggest you do it all through Formula, see code below:
Code:
// set payment status paymentStatus = "Not Paid"; // Set year as current year year = datetime\year(datetime\today()); // set up name name = string\concatenate(contact.firstName, ' ', contact.lastName, year);
Cheers
Leave a comment: