Hi - I'm trying to add a link to a revenue arrange...
# general
b
Hi - I'm trying to add a link to a revenue arrangement from a saved search, but I'm Netsuite formula-challenged and html-challenged. I've tried variations of:
Copy code
'<a href=<https://1234567.app.netsuite.com/app/accounting/transactions/revarrng.nl?id='{revenuearrangement.internalid}/a>>'
I tried both formula (text) and formula (html). Any help would be appreciated. Thanks!
e
Here’s an example of one of our formulas that use formula(text):
Copy code
'<a href=<https://12345678.app.netsuite.com/app/common/entity/vendor.nl?id=>' || {vendor.internalid}  || '&whence=>' || 'View Vendor' || '</a>'
I think it will be obvious looking at that how you include variables, but also make sure you don’t miss that your anchor element is not closed properly. You’re missing the leading “<”.
b
Thank you!