Skip to main content

Hell Trailblazers,

 

I am trying to create a validation rule to make the task Sub-Type field mandatory when Task Type = Send Literature. Below is my formula:

 

AND( ISPICKVAL(Type , 'Send Literature'), ISBLANK(TaskSubtype ) )

 

However I am getting the following error:  Error: Field TaskSubtype is a picklist field. Picklist fields are only supported in certain functions

 

How can I fix this, please guide.

 

Thanks,

Fahad

 

#Trailhead

2 个回答
  1. 2022年7月6日 06:06

    Hi ,

     

    Try this

     

    AND( ISPICKVAL(Type , 'Send Literature'), ISBLANK(TEXT(TaskSubtype  )) )

0/9000