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
JessyJessy 

how do I add the Opportunity stage History Related Lists in my custom visual force pages

how do I add the Opportunity stage History Related Lists in my custom visual force pages. Thanks in advance

Best Answer chosen by Admin (Salesforce Developers) 
ericmonteericmonte

try this

<apex:page standardController="Opportunity">
    Opportunity
    <apex:pageBlock >
        <apex:relatedList list="OpportunityHistories"/>
    </apex:pageBlock>
</apex:page>