I want to open 2 salesfroce reports at a same time when clicking on a custom formula field. I used hyperlink function in my formula field but in that i call my Visualforce page and that i will redirect to the method of apex class
Formula field:
HYPERLINK("/apex/leadreport?website=" & Website, "Find Competitors in Database", "_blank")
Apex Class:
public PageReference redirectToLeadReport(){
// Get the Results from
pageReference pg = new pageReference('https://ap1.salesforce.com/00O90000001wiUo?pv0='+websites );
pg.setRedirect(true);
return pg;
}
Visualforce page:
<apex:page action="{!redirectToLeadReport}" controller="leadReportController" >
</apex:page>
If any body aware of this so can you please help me.
Thanks, Kanupriya