Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm sure theres an easy way to do this and i'm just not spotting it.
I have various rows of data in my table, e.g.
Field_1 Field_2
A DOG
A CAT
A FISH
B DOG
B CAT
C CAT
I want the first field of the table to be deduplicated on Field_1 and then the next field to be a count of 1 where Field_2 is both CAT and DOG for the same instance of Field_1, so the result should look like
A 1
B 1
C 0
Hope that makes sense, thanks
Hi,
Maybe;
Count({<Field_2={'CAT'}>}Field_1)*Count({<Field_2={'DOG'}>}Field_1)
Cheers,
Chris.