We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
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.
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.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 35 | |
| 18 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 64 | |
| 38 | |
| 34 | |
| 23 |