Skip to main content
Solved

Append Field Value to Button URL

  • November 24, 2021
  • 2 replies
  • 24 views

Forum|alt.badge.img

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

Best answer by ScottWorld

Your formula would need to look like this:

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

2 replies

ScottWorld
Forum|alt.badge.img+35
  • Genius
  • Answer
  • November 24, 2021

Your formula would need to look like this:

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


Forum|alt.badge.img
  • Author
  • New Participant
  • November 24, 2021

Your formula would need to look like this:

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


Well thank you, again!! That worked.