5 respostas

You can create a custom formula field that displays the Account Industry field on the Opportunity field. But you don't need to do this if it's only for reporting purposes. An opportunity report will allow you to display all of your Account fields, including "Industry".
Here's how to create the custom field.
Setup...App Setup...Customize...Opportunities...Fields...click the New Button.
Data Type = "Formula"
Return Type = "Text"
Name it...Next
Click the Insert Field button:
Opportunity > Account > Industry....click Insert
Wrap the formula with TEXT() so it looks like:
TEXT( Account.Industry )
Add it to your page layout and save.
Aiden