This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreDid you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now
I got an invoice table listing all its items, I need a calculated column to identify whether the invoice contains only a SINGLE or MIXED category based on the category column. Below is the sample and the desired output for the status column.
Thanks for all the help.
| INVOICE NUMBER | ITEM | CATEGORY | STATUS |
| 48456558 | TEA | BEVERAGE | SINGLE |
| 48456558 | SODA | BEVERAGE | SINGLE |
| 48456558 | SODA | BEVERAGE | SINGLE |
| 48456558 | JUICE | BEVERAGE | SINGLE |
| 48459124 | SODA | BEVERAGE | MIXED |
| 48459124 | JUICE | BEVERAGE | MIXED |
| 48459124 | CANDY | CONFECTIONARY | MIXED |
| 48459124 | CHEESE | DAIRY | MIXED |
| 48459124 | SODA | BEVERAGE | MIXED |
| 48461354 | CHEESE | DAIRY | SINGLE |
| 48461354 | BUTTER | DAIRY | SINGLE |
Solved! Go to Solution.
HI @jrpoli2000
Try this
Status =
IF (
CALCULATE (
DISTINCTCOUNT ( Table1[CATEGORY] ),
ALLEXCEPT ( Table1, Table1[INVOICE NUMBER] )
)
> 1,
"MIXED",
"SINGLE"
)
HI @jrpoli2000
Try this
Status =
IF (
CALCULATE (
DISTINCTCOUNT ( Table1[CATEGORY] ),
ALLEXCEPT ( Table1, Table1[INVOICE NUMBER] )
)
> 1,
"MIXED",
"SINGLE"
)
Thanks again!!!
Check out the April 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 |
|---|---|
| 34 | |
| 31 | |
| 30 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 50 | |
| 30 | |
| 23 | |
| 23 |