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
Hi
I have two Tables Links and the Common Key = ID and Parent ID.
One of the tables = Vendors and the Other Table = Dimensions. The dimensions tables holds various dimensions values for Vendors, Customers, Resources, Employees etc.
When i pull in a Table Visual against my Vendors i get the below.
You will note that it shows blank lines for all of the Dimension Values that are not contained in the Vendor Table.
I thought that the table visual would only show entries that are contained in the Vendor Table.
I want to remove these Blanks. What is the best way of doing this ?
Solved! Go to Solution.
Hi, @Sean-OReilly
I briefly simulated some data that I hope fits your situation.
Measure:
Measure = IF(SELECTEDVALUE(Table1[ID])<>BLANK(),1,0)
Put Measure in the filter and set it to equal 1.
Does this match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Sean-OReilly
I briefly simulated some data that I hope fits your situation.
Measure:
Measure = IF(SELECTEDVALUE(Table1[ID])<>BLANK(),1,0)
Put Measure in the filter and set it to equal 1.
Does this match the output you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You could create calculation table with column from both tables and then add calculation column
IF ( ISBLANK([id]), "BLANK ID NAME", [id])
and after that visualize this table
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.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |