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

Get Fabric certified for FREE! Don't miss your chance! Learn more

Reply
NicoData1
New Member

Identify by cart distinct value

Dear all,

 

This is my first ever post on a forum so if I don't respect a rule please forgive me 🙂 

 

MY issues is that I have a listing of supplier (identifiy by a unique code) that work with 4 business unit (let's call them Pole 1/2/3...)

What I'm trying to do is to identify how many supplier is working only with one business unit (pole 1 or 2 or 3) through the card 

 

For my ExCo when they select for example Business Unit "Pole 1" I'd like the cart to change accordingly to number of suppliers that only belongs to them

 

NicoData1_0-1641357718614.png

 

 

Sorry if I'm not clear I can send you more details on request !

 

Thanks and have a good day

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @NicoData1,

Can you please share a pbix or some dummy data that keep raw data structure with expected results? It will help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

In addition, you can also take a look at the following measure formula if helps:

DC_PCount =
VAR dcSupplier =
    SELECTCOLUMNS (
        FILTER (
            SUMMARIZE (
                ALL ( Table ),
                Table[SupplierCode],
                "PoleCount", COUNTROWS ( VALUES ( Table[SupplierCode] ) )
            ),
            [PoleCount] = 1
        ),
        "SupplierCode", [SupplierCode]
    )
VAR currList =
    CALCULATETABLE ( VALUES ( Table[SupplierCode] ), ALLSELECTED ( Table ) )
RETURN
    COUNTROWS ( INTERSECT ( currList, dcSupplier ) )

Regards,

Xiaoxin Sheng

View solution in original post

3 REPLIES 3
NicoData1
New Member

Hello @Anonymous 

 

thanks it worked !!!

 

have a great day 

Anonymous
Not applicable

Hi @NicoData1,

Can you please share a pbix or some dummy data that keep raw data structure with expected results? It will help us clarify your scenario and test to coding formula.

How to Get Your Question Answered Quickly  

In addition, you can also take a look at the following measure formula if helps:

DC_PCount =
VAR dcSupplier =
    SELECTCOLUMNS (
        FILTER (
            SUMMARIZE (
                ALL ( Table ),
                Table[SupplierCode],
                "PoleCount", COUNTROWS ( VALUES ( Table[SupplierCode] ) )
            ),
            [PoleCount] = 1
        ),
        "SupplierCode", [SupplierCode]
    )
VAR currList =
    CALCULATETABLE ( VALUES ( Table[SupplierCode] ), ALLSELECTED ( Table ) )
RETURN
    COUNTROWS ( INTERSECT ( currList, dcSupplier ) )

Regards,

Xiaoxin Sheng

lbendlin
Super User
Super User

Is the data all coming from the same table or from multiple tables? Are these tables linked in a data model?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.