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 168
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