Salesforce Certified Platform App Builder — Question 82
A user asks for a checkbox to be automatically ticked if the annual revenue field is greater than a million.
Which formula to trigger a workflow would satisfy this requirement?
Answer options
- A. AnnualRevenue > 1000000
- B. AnnualRevenue > 1000000 , TRUE, FALSE
- C. IF(AnnualRevenue > 1000000 ,"TRUE","FALSE")
- D. AnnualRevenue
Correct answer: A
Explanation
The correct option A directly checks if the AnnualRevenue exceeds one million, which fulfills the requirement without additional complexity. Options B and C introduce unnecessary elements like TRUE and FALSE outputs, while option D simply references the AnnualRevenue field without a condition.