Challenge
Create a Validation Rule on Account that validates the account's Annual Revenue is within the range 0 and 1,000,000, inclusive. If it's not within the range, this error message should display: Annual Revenue must be between 0 and 1 million.
.
Example Scenarios:
Scenario 1:
Input: AnnualRevenue = 5,000
Result: No Error Message
Explanation: 5,000 is within the range.
Scenario 2:
Input: AnnualRevenue = -500
Result: Error Message should appear
Explanation: -500 is outside the range.
Scenario 3:
Input: AnnualRevenue = 0
Result: No Error Message
Explanation: 0 is within the range.