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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
nanat
Frequent Visitor

Adding Filter on Countrows and Relatedtable

Hi,

 

I need some help please. I have 2 tables (All Customers, Product Items). These 2 tables are linked by the unique Customer ID with All Customers as the 1 side and Product Items as the many sides.

I am trying to get a calculated column in All Customers to achieve the unique number of invoiced product orders each customer has placed. Please note that Product Items list the items customers have ordered but do not relate to orders - meaning 3 product items can equal to 1 order.

What I have so far is:

 

Product Order per Customer = 
COUNTROWS(
    RELATEDTABLE('Product Items Internal ID')
)

 

This gives me the number of product items each customer has placed but I need the number to be the unique number of product orders and also a filter which it will filter the Status of Product Items to be "Invoiced". 

 

I have tried a few times but the filter would not work. How can I add in a filter that will work for what I am after.

 

Thank you.

 

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

@nanat

 

I think something along these lines should work

 

Product Order per Customer =
CALCULATE (
    DISTINCTCOUNT ( 'Product Items Internal ID'[Products] ),
    'Product Items Internal ID'[status] = "invoiced"
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

@nanat

 

I think something along these lines should work

 

Product Order per Customer =
CALCULATE (
    DISTINCTCOUNT ( 'Product Items Internal ID'[Products] ),
    'Product Items Internal ID'[status] = "invoiced"
)

Hi @Zubair_Muhammad,

 

Thank you!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.