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
JJenkinsJJenkins 

Visualforce Page as Dashboard Component

I have very minimal VF experience.  I would like to create a VF page that I can insert in as a component in a dashboard that will show Opportunity Name and Next Step.  I would also like to be able to filter the opportunities by certain fields.  I'm pretty sure this is possible, but I have no idea of where to begin.

 

Thanks,

Pradeep_NavatarPradeep_Navatar

You need to create a VF page that would show the desired things and create a dashboard. While creating dashboard just drag the VF component from component list and drop to page layout and drag the VF page fom source list and drop to VF component.

 

In VF page, just use custom controller where you can use SOQL queries with where clause to fetch the filtered records.

 

Hope this helps.