Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext 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
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.
Solved! Go to Solution.
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"
)
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"
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 50 | |
| 44 | |
| 41 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 32 | |
| 32 | |
| 32 |