ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 27 - Certified Platform App Builder discussion

Report
Export

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

A.
CASE(Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''/s.gif'')
Answers
A.
CASE(Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''/s.gif'')
B.
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''))), ''Priority Flag'')
Most voted
Answers (1)
Most voted
B.
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''))), ''Priority Flag'')
C.
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'')))
Answers
C.
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'')))
D.
IMAGE (CASE( Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''Priority Flag'')
Most voted
Answers (1)
Most voted
D.
IMAGE (CASE( Priority, ''Low'', ''img/samples/flag_green.gif'', ''Medium'', ''img/samples/flag_yellow.gif'', ''High'', ''img/samples/flag_red.gif'', ''Priority Flag'')
Suggested answer: A, D

Explanation:

The formula for creating a visual indicator flag on each case based on the case priority should use the IMAGE and CASE functions. The IMAGE function returns an image for a given URL, and the CASE function evaluates an expression and returns a value based on that expression. Option A and D use these functions correctly, while option B and C do not.

asked 23/09/2024
Ayo dickson
50 questions
User
Your answer:
1 comments
Sorted by
Up
0
Down
User
Jacques Lesteven

Edited 23 days ago

Voted B, D

Need IMAGE keyword

Reply
Reply
Report