Nov 24, 2021 07:15 AM
Hello all.
I’m trying to append the value of a specific field to the end of a URL that’s opened by clicking on a button field.
For example, I have a field called ‘Deal ID’ and it has different values for each record.
Example -
Deal ID = 123456
URL = www.google.com/
What is the URL formula for if I wanted to append this ‘Deal ID’ on to the same URL for each record.
I tried “www.google.com/{Deal ID}” but it didn’t work.
Thanks
Dan
Solved! Go to Solution.
Nov 24, 2021 07:44 AM
Your formula would need to look like this:
"https://www.google.com/" & {Deal ID}
Nov 24, 2021 07:44 AM
Your formula would need to look like this:
"https://www.google.com/" & {Deal ID}
Nov 24, 2021 07:47 AM
Well thank you, again!! That worked.