Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have created a Distinct table(DisAcntName) for AccountName column from one dim table(Accounts) and there is one more dim table(DimID) which contains ID column.
Now I added AccountName in slicer and ID in table visuals. if I select something in the slicer it should reflect in Table visual.
pl share the measure to the above requirement.
Note - DisAcntName table is not joined with any table. It is independent.
Hi, @Anonymous
You need to apply a filter measure to table visual filter pane.
filter =
VAR a =
IF (
SELECTEDVALUE ( Accounts[AccountName] ) IN VALUES ( DisAcntName[AccountName] ),
1,
0
)
RETURN
IF ( ISFILTERED ( Accounts[AccountName] ), a, 1 )
Best Regards,
Community Support Team _ Eason
Hi @Anonymous ,
Have you got an example that you can share?
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.