Forum Discussion
Anonymous
6 years agoNot applicable
How to create a custom SLICER?
Hello I have two sets of criteria, e.g.: CriteriaSet1: Col1 = A || Col2 <> B && Col3 = C CriteriaSet2: Col1 = D || Col2 <> E && Col3 = F I want to use these criteria to filter a table. I ...
amitchandak
Super User
6 years agoAnonymous , In case you need as in filter.
calculate([measure], filter(Table,(Col1 = D || Col2 <> E && Col3 = F) && (Col1 = A || Col2 <> B && Col3 = C)))- Anonymous6 years agoNot applicable