• Boaz Sherez 1
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 1
    Replies
Hi,

I'm fairly new to formula fields and am having trouble with this one. I want to display various images depending on which picklist value is chosen.  Here is one formula I've tried, and am getting a very confusing error message :( 

Error: Incorrect number of parameters for function 'ISPICKVAL()'. Expected 2, received 9

Could anyone guide me in the right direction? Thanks!

IMAGE (
ISPICKVAL (
Contact_Status_Data__c,
   "Active", "img/msg_icons/confirm32.png",
   "Inactive", "img/msg_icons/error32.png",
   "Non-Serviced", "img/msg_icons/warning32.png",
   "No Volume", "img/msg_icons/info32.png"
))