Apple Numbers, matching string variations in a SUMIFS function

numbers

I'm using a SUMIFS function to get values from a column in another table depending on if they have a certain string in a corresponding memo column. I'd like to be able to check for a few variations on the string, i.e.

SUMIFS(Amount-column, Memo-column, "this-string*"||"that-string*")

Anyone know how to do this?

Best Answer

Compounding SUMIF statements with SUM will work as well without chewing up an intermediate results column. Like so:

SUM(SUMIF(memo-column,"this-string*",amount-column),
    SUMIF(memo-column,"that-string*",amount-column))