This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
HI,
I have two tables; one with customer data and one with order data.
I would like to be able to add a column (like the one in red) to the customer table to show whether all orders are fulfilled for that custom, based on the following rules:
| CustomerId | CustomerName | All orders fulfilled |
| 1 | Stella | No orders |
| 2 | Joan | All orders fulfilled |
| 3 | Marge | Unfulfilled orders |
| OrderID | CustomerID | Order | Fulfilled |
| 1 | 2 | Pants | Yes |
| 2 | 3 | Pants | Yes |
| 3 | 4 | Shoes | No |
| 4 | 2 | Shoes | Yes |
| 5 | 2 | Socks | Yes |
| 6 | 3 | Shoes | No |
| 7 | 6 | Pants | No |
Solved! Go to Solution.
Sorry there is a typo, it suppose to be FIlTER not FILTERS
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Hi,
This calculated column formula works
Column = if(CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[CustomerID]=EARLIER(Data[CustomerId])))=BLANK(),"No orders",if(CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[CustomerID]=EARLIER(Data[CustomerId])&&'Table'[Fulfilled]="Yes"))=CALCULATE(COUNTROWS('Table'),FILTER('Table','Table'[CustomerID]=EARLIER(Data[CustomerId]))),"All orders fulfilled","Not fulfilled"))
Hope this helps.
Sorry there is a typo, it suppose to be FIlTER not FILTERS
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
HI @parry2k
Thanks for the speedy response. I've change the table/column names in your suggestion to reflect my column names etc, but I'm getting an error on this part of the statement. PowerBI error says "Parameter is not the correct type" and suggests this part of the arguement should be a table. I think i'm probably missing something obvious.
FILTERS ( __Orders, OrderTable[Fullfilled Column] = "No" )
@HCK21 try following calculated column in the customer table:
All Orders Fulfilled =
VAR __Orders = RELATEDTABLE ( OrderTable )
VAR __CountNo = COUNTROWS ( FILTERS ( __Orders, OrderTable[Fullfilled Column] = "No" ) )
RETURN
SWITCH ( TRUE (),
ISEMPTY ( __Orders ), "No Orders",
NOT ISBLANK ( __CountNo ), "Unfulfilled Orders",
"All orders fulfilled"
)
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 27 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 56 | |
| 48 | |
| 37 | |
| 21 | |
| 20 |