Forum Discussion
ezequiel
Microsoft Employee
4 years agoFilter out values based on other filter
Hi I have a list of customers (20 customers) - Table A. I have another table with Customer that attended events, including the date of the event - Table B. I'd like to display a list of customer...
- 4 years ago
Samarth_18
Community Champion
4 years agoHi ezequiel ,
You can create a measure like below and use it as filter on your visual:-
Measure = COUNTROWS(FILTER('Table B','Table B'[Customer attending events] = MAX('Table A'[Customer])))
Output:-
Thanks,
Samarth