Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
Dear friends
how can i display value from another table to visual like this , i need to display distinct value to visual that row header from other table
Table 1
| Date | Type | License |
| 01-01-21 | L | AAA |
| 01-01-21 | L | BBB |
| 02-01-21 | P | CCC |
| 02-01-21 | P | CCC |
Table Visual *Type column are from table2
| Type | Distinct license |
| L | 2 |
| P | 1 |
Solved! Go to Solution.
Hi @Anonymous ,
Solution1: create a relationship between table1 and table2.
Solution2: create a measure as below.
Measure = CALCULATE(DISTINCTCOUNT('Table'[License]),FILTER('Table','Table'[Type]=SELECTEDVALUE('Table (2)'[Type])))
Best Regards,
Jay
Hi @Anonymous ,
Solution1: create a relationship between table1 and table2.
Solution2: create a measure as below.
Measure = CALCULATE(DISTINCTCOUNT('Table'[License]),FILTER('Table','Table'[Type]=SELECTEDVALUE('Table (2)'[Type])))
Best Regards,
Jay
@amitchandak for table 2 are transaction like table 1 ,i create some reference for relate by merge date and type for each table
@Anonymous , if you have a common type table then the measure
distinctcount(Table1[License]) should help
if you do not have one refer https://www.youtube.com/watch?v=Bkf35Roman8
@amitchandak i tried but it show all distinct value that not divide by type (ex. boths type L and P display distinct license as 3 )
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 25 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 54 | |
| 46 | |
| 38 | |
| 28 | |
| 21 |