Forum Discussion
MadisMerk
Helper I
5 years agoFilter on data that does not exist in a table
Hi, I have two tables in my model: ID Name 1 Company A 2 Company B 3 Company C 4 Company D 5 Company E 6 Company F 7 Company G 8 Company H 9 Company I ...
amitchandak
Super User
5 years agoMadisMerk , Use this measure with company name in a table visual and try
if(isblank(count(Table2[Transport Region])),1,blank())
- MadisMerk5 years ago
Helper I
Hi,
It does work partially, but I would like to use it in a slicer and also have the rest of the transport regions present in the same slicer.
- v-kelly-msft5 years ago
Community Support
Hi MadisMerk ,
First create a column in company table:
_region = RIGHT('Table'[Name],1)Then create a measure as below:
Measure = IF(NOT(MAX('Table'[_region]) in FILTERS('Table (2)'[Transport Region])),1,BLANK())And you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
- MadisMerk5 years ago
Helper I
Hi,
This is the other part of the equation, but how am I able to use it in a slicer?