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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
jrpoli2000
Frequent Visitor

Help with calculated column

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 NUMBERITEMCATEGORYSTATUS
48456558TEABEVERAGESINGLE
48456558SODABEVERAGESINGLE
48456558SODABEVERAGESINGLE
48456558JUICEBEVERAGESINGLE
48459124SODABEVERAGEMIXED
48459124JUICEBEVERAGEMIXED
48459124CANDYCONFECTIONARYMIXED
48459124CHEESEDAIRYMIXED
48459124SODABEVERAGEMIXED
48461354CHEESEDAIRYSINGLE
48461354BUTTERDAIRYSINGLE
1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

HI @jrpoli2000

 

Try this

 

Status =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Table1[CATEGORY] ),
        ALLEXCEPT ( Table1, Table1[INVOICE NUMBER] )
    )
        > 1,
    "MIXED",
    "SINGLE"
)

View solution in original post

2 REPLIES 2
Zubair_Muhammad
Community Champion
Community Champion

HI @jrpoli2000

 

Try this

 

Status =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Table1[CATEGORY] ),
        ALLEXCEPT ( Table1, Table1[INVOICE NUMBER] )
    )
        > 1,
    "MIXED",
    "SINGLE"
)

Thanks again!!!

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.