
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
Hey there! Use this instead:
AND(
ISCHANGED(StageName),
TEXT(StageName) = 'Win',
Sow_signed_c = FALSE
)
Copy paste and it should work as expected.