I have two slices, and both slices have one thing in common: the [Channel] column and the [Quantity] column.
I want to compare the sheets using the [Channel] and [Quantity] columns. However, there seems to be an issue with the expression that is preventing the desired outcome. In this matter, I will need your help.
AND(IN([CHANNEL], SELECT(Someday Report[CHANNEL], TRUE)), IN([PAIR QTY], SELECT(someday report[QUANTITY], TRUE)),
LOOKUP([CHANNEL], “Sameday photo”, “CHANNEL”, “PAIR QTY”) = ANY(SELECT(Someday Report[QUANTITY], [CHANNEL] = [PAIR QTY])))
ALL these statements are true:
…1: (The value of column ‘CHANNEL’) is one of the values in the list (The list of values of column ‘CHANNEL’
…from rows of table ‘Someday Report’
…where this condition is true: (“TRUE”))
…2: (The value of column ‘PAIR QTY’) is one of the values in the list (The list of values of column ‘QUANTITY’
…from rows of table ‘Someday Report’
…where this condition is true: (“TRUE”))
…3: (One randomly chosen value from this list (
…The list of values of column ‘PAIR QTY’
…from rows of table ‘Sameday photo’
…where this condition is true: ((The value of column ‘CHANNEL’) is equal to (The value of column ‘CHANNEL’)))) is equal to (One randomly chosen value from this list (
…The list of values of column ‘QUANTITY’
…from rows of table ‘Someday Report’
…where this condition is true: ((The value of column ‘CHANNEL’) is equal to (The value of column ‘PAIR QTY’))))