Challenge
Create a formula field,
Create the following field on ```Account```:
Field Type: Formula (Currency)
Field Label: Parent Annual Revenue
Field Name: Parent_Annual_Revenue
Description: Fetch and display if the annual revenue of the account highest in the hierarchy
Example Scenarios:
Scenario 1:
Input: Account Hierarchy: Grandparent -> Parent -> Child (Current Account)
Result:Parent_Annual_Revenue = Grandparent's Annual Revenue
Explanation: The account has a grandparent. The formula field fetches the annual revenue of the grandparent.
Scenario 2:
Input: Account Hierarchy: Parent -> Child (Current Account)
Result:Parent_Annual_Revenue = Parent's Annual Revenue
Explanation: The account has a parent, but no grandparent. The formula field fetches the annual revenue of the parent.
Scenario 3:
Input: Account Hierarchy: Sole Account (Current Account)
Result:Parent_Annual_Revenue = blank
Explanation: The account does not have a parent. The formula field should display an empty value.