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
Prasanth ReddyPrasanth Reddy 

How to add 3 or more dashboards to home page ?

Hi,

 

Could anyone help for adding more dashboards to home page

 

Regards,

Prasanth.

Best Answer chosen by Admin (Salesforce Developers) 
Ashish_SFDCAshish_SFDC

Hi Prashanth, 

 

Home page cannot be override, however You can embed a Visualforce Page in your home page layout

 

Or

 

Similarly, you could create an HTML area home page component with a little javascript that redirects from the home page to the visualforce page:

<script language="JavaScript">
window.location.replace("/apex/YourVfPage");
<script>

 

Regards,

Ashish