If I wanted to create a saved search on a sales or...
# general
s
If I wanted to create a saved search on a sales order (or payment event) that returned all sales orders with multiple authorization payment events, how would I do that? I have tried the summary criteria by saying count - document Number - greaterthan or equal to 2 and I get nothin!
a
Have you tried count of Internal ID?
Or use a formula (numeric) cASE WHEN {paymentevent.internalid} IS NULL THEN 0 ELSE 1 END And use the sum function
s
Yeah, that's what I ended up doing. Strange that count doesn't work lol
Thanks!!!