Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Platform App Builder All Questions

View all questions & answers for the Certified Platform App Builder exam

Exam Certified Platform App Builder topic 1 question 107 discussion

Actual exam question from Salesforce's Certified Platform App Builder
Question #: 107
Topic #: 1
[All Certified Platform App Builder Questions]

At Universal Containers, the VP of Service has requested a visual indicator flag on each case, based on the case priority. High-priority case should be flagged red, medium-priority should be flagged yellow, and low-priority cases should be flagged green.
Which two formulas will accomplish this requirement? (Choose two.)

  • A. IMAGE( CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif, "High", "img/samples/flag_red.gif", "/s.gif"), "Priority Flag")
  • B. IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif , IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif, "/s.gif") ) )
  • C. CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif", "High", "/img/samples/flag_red.gif", "/s.gif")
  • D. IMAGE( IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL (Priority, "High"), "/img/samples/flag_red.gif", "/s.gif) ) ), "Priority Flag")
Show Suggested Answer Hide Answer
Suggested Answer: AD 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
long_one
Highly Voted 2 years, 10 months ago
You must use the IMAGE() function to display images, hence B & C are automatically out. Answer D is syntactically incorrect, it should be:- { IMAGE(IF(ISPICKVAL(Priority, "Low"), "/img/samples/flag_green.gif", IF(ISPICKVAL(Priority, "Medium"), "/img/samples/flag_yellow.gif", IF(ISPICKVAL(Priority, "High"), "/img/samples/flag_red.gif", "/s.gif") ) ) , "Priority Flag") }
upvoted 6 times
...
HGayashan
Most Recent 10 months, 3 weeks ago
Selected Answer: AD
Tested. A & D are correct here
upvoted 1 times
...
SuchiS
1 year, 7 months ago
A and D, https://help.salesforce.com/s/articleView?id=sf.useful_advanced_formulas_image_links.htm&type=5
upvoted 2 times
...
Ma21
2 years, 10 months ago
A and D - looks rt. IMAGE( CASE( Priority, "Low", "/img/samples/flag_green.gif", "Medium", "/img/samples/flag_yellow.gif", "High", "/img/samples/flag_red.gif", "/s.gif"), "Priority Flag")
upvoted 4 times
...
lcelinesf
2 years, 11 months ago
A and D are correct Example of A in SF documentation: https://help.salesforce.com/s/articleView?id=sf.useful_advanced_formulas_image_links.htm&type=5
upvoted 4 times
...
SEDIT
3 years, 1 month ago
So it should be B and D?
upvoted 3 times
...
loki_12
3 years, 1 month ago
picklist must always use ispickval() function. So A is wrong.
upvoted 3 times
Xinowi
1 year, 9 months ago
Picklists also can be expressed with CASE function. So A and D, I tested
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...