Hi
I am attempting to build placeholder text for an email alert but I want to do it on another sheet referencing the data on my master sheet. It will include text and cell references. Basically I'm trying to write something like the following.
"Hi name, Cardholder has made a purchase at Vendor for $XX.XX. Please review and approve or decline the transaction"
(There will be a lot more but I figure if I can understand the way to start this, I can finish the formula)
I can't really use Index/Match because this will generate for each row added to the master smartsheet and VLookup also doesn't work. I have tried Collect and Join to no avail as well.
{Transaction} is the range of the master sheet.
Basically here is what I have so far.
="Hi Brian," + CHAR(10) + {Transaction} [Cardholder_First]@row + " " + {Transaction} [Cardholder_Last]@row + " " + "has made a purchase at" + " " + {Transaction} [Vendor]@row + "." + CHAR(10) + "Please Review and approve or decline the transaction"
I get an UNPARSABLE error.
It works on the master sheet but not on a separate sheet.