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
michael_mcmahonmichael_mcmahon 

Formula Syntax errors with HYPERLINK()

I've had three exchanges with support and still no resolution, so I'm trying here.  I'm trying to construct a dynamic URL using field contents.  I either get an error such as "Found "Website__c"" or "Missing ")"" if I try other constructs.  

 

HYPERLINK("http://www.opensiteexplorer.org/comparisons?site=" &Website__c"&comparisons[0]="&competitor1__r.website__c"&comparisons[1]="&competitor2__r.website__c"&comparisons[2]="&competitor3__r.website__c"&comparisons[3]="&competitor4__r.Website__c" , "SEO Competitor Comparison")

 

Can anyone tell me what I'm doing wrong?

 

thank you!

CheyneCheyne

What is the error you are getting with this construct? Have you tried encoding your url parameters, using URLENCODE()?

michael_mcmahonmichael_mcmahon
URLENCODE is new to me, I'll research it and see if that helps. The error
that I get is Syntax Error, Missing ')'. I fully expect this to be my
error, but it seems as though the formula works when I simplify it (and
shorten it) and I get the error when the formula gets more complex and
longer. Is it possible that there is a character limit? I suspect the
URLENCODE() will fix all this anyway, though.



THANK YOU for the response! This group rocks.
CheyneCheyne

It looks like you're also missing some "&"s when concatenating strings. For example, where your formula says 

 

site="&Website__c"&comparisons[0]="

 

you need a "& after Website__c in order to concatenate Website__c with "&comparisons[0]=". So this part should read

 

site="&Website__c&"&comparisons[0]="

 

I see this error in all of the instances where you are concatenating a field value with raw text.