function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
RimaRima 

Passing multiple values to hyperlink formula field

Hi All,

 

Could anyone please give me an example of how to pass two parameters in a hyperlink formula field? For ex: I can able to pass student name to the hyperlink, I would like to send student age as a second argument to the url.Your help is greatly appreciated.

RimaRima

Hi,

 

I could able to fix the problem..

kritinkritin

How ?

DdantuonoDdantuono

Hi,

 

Can you tell us how you were able to do this, or provide the formula?

 

Thanks in advance!!

 

Danielle

Steve :-/Steve :-/

Are you looking for something like this?

 

HYPERLINK("http://servername/call?id=" & Id & "&phone=" & Phone, Phone)

 can you post an example of the URL, object and fields that you're trying to use?

DdantuonoDdantuono

 

Here's what I need to do:

Create a new follow up record (custom object) from a placement record (custom object). 

Map two fields from the placement object to the new follow up record (Contact ID and Placement ID).

Map two fields from the contact object to the follow up record (Next CE Milestone, Next CE Milestone Date).

The record type for the next follow up should be “continuous employment”.

 

I know I need to create a hyperlink formula to do this.  

I’ve already started: HYPERLINK("a06/e?RecordType=012500000000tUy", "New CE Follow Up")

This links to a follow up record, continuous employment record type.