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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.