Forum Discussion
MichaelSamiotis
3 years agoResolver I
Repeating Customers with criteria
Hello all, I hope you are well and thank you very much in advance for any advice on the below. I have a table containing Shop,City,Product_id,Purchase_date. I want to count how many customers...
- Anonymous3 years ago
It is now resolved with the following:
RETURNCALCULATE(COUNTROWS (FILTER (UniqueCustomersTable,SELECTEDVALUE ( 'Fact Sales'[Product_ID] ) = [Product_ID])))
Anonymous
3 years agoNot applicable
It is now resolved with the following:
RETURN
CALCULATE(COUNTROWS (
FILTER (
UniqueCustomersTable,
SELECTEDVALUE ( 'Fact Sales'[Product_ID] ) = [Product_ID]
)
))