Skip to main content

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

Your formula would need to look like this:

"https://www.google.com/" & {Deal ID}


Your formula would need to look like this:

"https://www.google.com/" & {Deal ID}


Well thank you, again!! That worked.