Hi, I want to create a slice for Table 2 which does not contains rows from Table 1.
Table 1 is subset of Table 2.
How can I achieve this? Please Help.
Thanks
Hi, I want to create a slice for Table 2 which does not contains rows from Table 1.
Table 1 is subset of Table 2.
How can I achieve this? Please Help.
Thanks
Row filter condition:
NOT( IN( [ID] , Table 1[ID] ) )
Worked like a charm.