Forum Discussion
Remove/Hide multiples rows dynamically from dataset
- 4 years ago
You can do this in Power Query of DAX
In Power Query you could merge using a right anti join.
Or create a relationshiop and create a DAX measure
exceptionflag = INT(NOT(ISEMPTY(Table2)))
this will return 1 if the Table1 has a corresponding value or null if it does not.They in your visual use the FILTER menu to only show rows with exceptionflag not = 1
Remember we are BI community voluntrees so please click the thumbs-up for me taking the trouble to help you and then accept the solution if it works. Thank you !
You can do this in Power Query of DAX
In Power Query you could merge using a right anti join.
Or create a relationshiop and create a DAX measure
exceptionflag = INT(NOT(ISEMPTY(Table2)))
this will return 1 if the Table1 has a corresponding value or null if it does not.
They in your visual use the FILTER menu to only show rows with exceptionflag not = 1
Remember we are BI community voluntrees so please click the thumbs-up for me taking the trouble to help you and then accept the solution if it works. Thank you !