Isnotblank and

Hi Guys
I have an expression in an Action: ISNOTBLANK([QuoteItems]) but I need a 2nd criteria adding

ISNOTBLANK([QuoteItems]) and [TagField]=“No”

Can someone help with the syntax please.

Thanks

0 5 162
5 REPLIES 5

Try,
And(isnotblank([Quote items]),isnotblank([TagField]))

Hi Sarvesh, thanks for that.
Only problem is [TagField] will allways hold a text value. “Yes” “No” “Pending” etc so Blank won’t help in this situation.

Cheers


Hi,
@Dave_Willett,

Please try following
AND(ISNOTBLANK([Quote items]), [TagField] =“No”)

Thats the one Suvrutt.

Many Thanks

Top Labels in this Space