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
StefanStefan 

Hyperlink to filtered report

Is it possible to use a hyperlink field to link to a filtered report

 

I created a custom link : /00O4000000283d8?pv0={!Account.Id}

 

I would like to create a hyperlink something like the below:

 

IF( SAP_ProductCount__c >0,
HYPERLINK(/00O4000000283d8?pv0={!Account.Id}), "Click to view products"),
"")

JakesterJakester
You can definitely do this - what's not working? Also, please use the Code button (hiding to the right of the ABC strikethru icon) to post your code so the smileys don't disfigure it.
StefanStefan

Thanks Jakester. Knowing it should work, went back to the drawing board and found the solution:

 

IF( SAP_ProductCount__c >0,HYPERLINK("https://na2.salesforce.com/00O4000000283d8?pv0="& Id, "Click to view products"),"")