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
Somasundaram S 1Somasundaram S 1 

open dashboard based on user

i have 3 different dash board for same profile user , based on user login i would like to open the dashboard . I would like to create VF.
Only simple VF enough? or do i need to have apexclass . How to do this and  please advise me.
thanks
Somasundaram S 1Somasundaram S 1
Some how i managed the coding to open the dash board in VF and gave this link , but how do i open the dashbaord based on user login , 
<apex:page >
<apex:pageBlock title="My Dashboard" mode="edit">
            <apex:pageBlockSection title="My Dashboard" columns="1" collapsible="false">
                               <apex:outputLink title="My Dashboard" value="{!URLFOR('/01Z9E0000000EWK')}">My Dashboard</apex:outputLink>
            </apex:pageBlockSection>
            </apex:pageBlock>
</apex:page>