Skip to main content

Hi Community,

 

I already tried it a few times. This was probably the closest one: 

 

ISBLANK(TEXT(Priorvalue(K_FS_MP_StatusInformation__c)))

 

"K_FS_MP_StatusInformation__c" is a multipicklist value 

 

Basically I want to check if the priorvalue of this multipicklist field was empty but I am struggling to write it in the right way.

 

Any ideas?

 

Many thanks in advance!

 

 

Regards,

Benedict

3 respuestas
  1. 8 oct 2019, 11:16
    Hello Benedict,

     

    You can check like this:

    IF(ISBLANK(Priorvalue(K_FS_MP_StatusInformation__c)),true,false)

    Thanks

0/9000