Hi,
I have a formula
S
My question is why don't I need to use keepfilter to create an 'AND' operation with the external filter context, if I replace summarize with crossjoin, then wrapping in keepfilter would be needed to achieve this, is it to do with what is being sent to CALCULATE?
Richard.
I have a formula
S
Power Query:
ummarize:=CALCULATE (
[Total sales M],
FILTER (
SUMMARIZE ( Sales, Customer[Customer], 'Product'[Product] ),
Customer[Customer] = "tom"
&& 'Product'[Product] = "a" ) )
My question is why don't I need to use keepfilter to create an 'AND' operation with the external filter context, if I replace summarize with crossjoin, then wrapping in keepfilter would be needed to achieve this, is it to do with what is being sent to CALCULATE?
Richard.