You need to sign in to do that
Don't have an account?

Opportunity Account Not Displaying a Link?
I have a visual force page with an Opportunity standard controller.
The following code displays the proper information, but is not displaying as a link to that Account. However, my custom lookup fields to other accounts are displaying properly and linked to their respective Account records. What am I missing here?
<apex:outputField value="{!opportunity.Account.name}"/>
You should only need to specify the accountid field for it to properly display a link to the account
The output field should automatically see that it is a reference field and render the appropriate label and name value as a link.
All Answers
You should only need to specify the accountid field for it to properly display a link to the account
The output field should automatically see that it is a reference field and render the appropriate label and name value as a link.
You should use
<apex:outputLink value="{!FieldName}">{!FieldName}</apex:outputLink>