Forum Discussion
Pillic
2 years agoHelper II
AND logic filter measure
Hi community,
I have a table that holds multiple SAMPLE_IDs that include multiple MATNR. Now I need an AND logic measure to get distinct SAMPLE_IDs when each selected MATNR is included.
| SAMPLE_ID | MATNR |
| 1 | A |
| 1 | B |
| 1 | C |
| 1 | D |
| 2 | A |
| 2 | C |
| 2 | D |
| 3 | B |
| 3 | D |
In this sample I want to use MATNR as slicer and if I select MATNR B and D the result should be:
| SAMPLE_ID |
| 1 |
| 3 |
How can this be achieved?