ted_p
03/13/2025, 3:26 PMCeligo AI
03/13/2025, 3:26 PMAI generated answer (using internal Slack threads):To create a URL field that uses one value from another field, you can use a formula in the field definition. Here's how you can do it: 1. Create two fields. One for the value you want to append to the URL (let's call it
fieldid
) and the other for the URL itself.
2. For the URL field, set the type to Hyperlink
and the display type to Inline Text
.
3. In the default value of the URL field, use a formula to concatenate the base URL with the value from fieldid
. If you need to remove any spaces from the fieldid
value, you can use the replace
function in the formula. Here's an example of what the formula could look like: 'baseurl' || replace({fieldid}, ' ', '')
.
4. Make sure the Store Value
option is not checked in the field definition. This ensures that the URL is dynamically generated each time the record is viewed, using the current value of fieldid
.
For more information, you can look up Dynamic Defaults and Dynamic Hyperlinks
in the NetSuite help guide.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
03/13/2025, 3:26 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.84166044
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.815610945
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.812410176
Celigo AI
03/13/2025, 3:26 PM