Skip to main content
Hi,

 

I want to make SOW Signed a required field when the picklist value from 'Stage' is set to 'Win'.

 

SOW signed is a custom field of type checkbox.

 

This is the logic I used:

 

AND( 

 

TEXT(StageName) = 'Win', 

 

ISBLANK(Sow_signed_c) 

 

)

 

I get the following Error: Incorrect argument type for function 'ISBLANK()'.

 

What am I doing incorrectly?

 

Thanks for your time.

 

CS
4 answers
  1. Jun 27, 2016, 7:06 PM
    Hey there!

     

    Use this instead:

    AND(

      ISCHANGED(StageName),

    TEXT(StageName) = 'Win',

    Sow_signed_c = FALSE

    )

     

    Copy paste and it should work as expected.
0/9000