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
chenna1234chenna1234 

Passing Id's through Hyperlink Formula

Hi All,

 

I need to pass quote & account ids in the below link. Please help me out............

 

HYPERLINK("/apex/Quickquote? &id=" & Id , "Edit Quote Details", "_blank" )

 

quoteid=0Q0Q0000000M66x                

accountid=001Q000000YygXN

 

Thanks,

Chenna(INDIA)

Jia HuJia Hu
I guess quoteid is a custom field on the Account object.
try this,

HYPERLINK("/apex/Quickquote? &id=" & Id & "&quoteid =" & quoteid__c, "Edit Quote Details", "_blank" )