Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
MyWeeLola
Helper II
Helper II

How can I display 0 count values on a table filtered with values from another table?

Good afternoon

 

I have 2 tables.

TblRef
A
B
C
D

 

and

 

tblmain
A
B
C
D
E
F
G
H
A
B
B
C
C

 

I want to dsiplay a table which filters tblMain to teh values in tblRef, and displays 0 values.

 

In the examples above I want the display table output to look as below.

 

ValueCount
A2
B3
C3
D0

How do I achieve this?

 

I cannot seem to get the filter correct and when I use a measure to count, I tried adding +0 to the end which then gave me the non tblref values.

 

I look forward to hearing from you.

 

Lola

2 ACCEPTED SOLUTIONS
rajendraongole1
Super User
Super User

Hi @MyWeeLola - if a value from tblRef does not exist in tblMain, it still shows a count of 0. but D is present in main table so we are gtting 1 . 

 

Count for tblRef =
VAR refValues = SELECTEDVALUE(Tblref[TblRef])
RETURN
    CALCULATE(
        COUNTROWS(tblMain),
        Tblmain[tblmain] = refValues
    )
 
 

 

 

rajendraongole1_0-1726144775428.png

 

Hope it helps

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

uzuntasgokberk
Super User
Super User

Hello @MyWeeLola,

Make relationship your table one to many. İf TblRef have unique values.

uzuntasgokberk_0-1726145672743.png

 

After that You use below the dax code and for example my column name is "Text" but ı take the column from dimension table which means unique column table.

uzuntasgokberk_1-1726145736475.png


However, you can't use the masure in slicer. So that I recommend to use the measure as filter pane.

uzuntasgokberk_2-1726145791490.png

 

Kind Regards,
Gökberk Uzuntaş

📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!

🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |



View solution in original post

4 REPLIES 4
uzuntasgokberk
Super User
Super User

Hello @MyWeeLola,

Make relationship your table one to many. İf TblRef have unique values.

uzuntasgokberk_0-1726145672743.png

 

After that You use below the dax code and for example my column name is "Text" but ı take the column from dimension table which means unique column table.

uzuntasgokberk_1-1726145736475.png


However, you can't use the masure in slicer. So that I recommend to use the measure as filter pane.

uzuntasgokberk_2-1726145791490.png

 

Kind Regards,
Gökberk Uzuntaş

📌 If this post helps, then please consider Accepting it as a solution and giving Kudos — it helps other members find answers faster!

🔗 Stay Connected:
📘 Medium |
📺 YouTube |
💼 LinkedIn |
📷 Instagram |
🐦 X |
👽 Reddit |
🌐 Website |
🎵 TikTok |



@uzuntasgokberk 

 

Thank you for this, if worked perfectly and I am using this solution for the issue.

rajendraongole1
Super User
Super User

Hi @MyWeeLola - if a value from tblRef does not exist in tblMain, it still shows a count of 0. but D is present in main table so we are gtting 1 . 

 

Count for tblRef =
VAR refValues = SELECTEDVALUE(Tblref[TblRef])
RETURN
    CALCULATE(
        COUNTROWS(tblMain),
        Tblmain[tblmain] = refValues
    )
 
 

 

 

rajendraongole1_0-1726144775428.png

 

Hope it helps

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





@rajendraongole1 

Thank you for this, it worked as i needed it too, thank you.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors