Help

Append Field Value to Button URL

Solved
Jump to Solution
1164 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Daniel_Hamer
5 - Automation Enthusiast
5 - Automation Enthusiast

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

1 Solution

Accepted Solutions
ScottWorld
18 - Pluto
18 - Pluto

Your formula would need to look like this:

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

See Solution in Thread

2 Replies 2
ScottWorld
18 - Pluto
18 - Pluto

Your formula would need to look like this:

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

Well thank you, again!! That worked.