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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Count unique values based on condition

Hi Guys,

 

I have some order and production line data.  What I want to do is for each production line I want to count the number of occurance of that production line in the table only if there is one order number relating to that production line.

 

This is the sample data and below is the required answer.

 

So I want to create a table by Production line number with no of Orders.

 

Please help.

 

Link to PBI file
https://drive.google.com/file/d/1syX7jSgZHhEuhDYvBuIqAiLSm52GUR9u/view?usp=sharing

 

Answer.PNG

1 ACCEPTED SOLUTION
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

You can use a slicer for the Order.No, create a calculated table:

Table = DISTINCT('Data'[Production Line No.])

A measure to count:

Count = 
CALCULATE (
    COUNT ( Data[Order No.] ),
    FILTER (
        ALLSELECTED ( Data ),
        'Data'[Production Line No.] IN DISTINCT ( 'Table'[Production Line No.] )
    )
) + 0

vyingjl_0-1634885933983.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

7 REPLIES 7
v-yingjl
Community Support
Community Support

Hi @Anonymous ,

You can use a slicer for the Order.No, create a calculated table:

Table = DISTINCT('Data'[Production Line No.])

A measure to count:

Count = 
CALCULATE (
    COUNT ( Data[Order No.] ),
    FILTER (
        ALLSELECTED ( Data ),
        'Data'[Production Line No.] IN DISTINCT ( 'Table'[Production Line No.] )
    )
) + 0

vyingjl_0-1634885933983.png

 

Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

BeaBF
Impactful Individual
Impactful Individual

@Anonymous Hi! I can't open the file, Can you paste here the data table on which to calculate what you requested?

 

Thx,

B.

Anonymous
Not applicable

Order No.Production Line No.
Order1A
Order1B
Order1C
Order2A
Order3A
Order4C
Order4D
Order4E
Order5A
Order6C
Order7D
Order8E
Order8D
BeaBF
Impactful Individual
Impactful Individual

@Anonymous Here two calculated columns to obtain your result:

 

COUNTT = CALCULATE(COUNT(Tabella[Order No.]), ALLEXCEPT(Tabella,Tabella[Order No.]))
 
TOTAL_ORDERS = IF(CALCULATE(SUM(Tabella[COUNTT]), Tabella[COUNTT] = 1) = BLANK(), 0, CALCULATE(SUM(Tabella[COUNTT]), Tabella[COUNTT] = 1))
 
Hope that's what you wanted!
B.
Anonymous
Not applicable

@BeaBF Thank you for the response. But we can not do it in a calculated column as the result should dynamically change based on the filters applied.

Anonymous
Not applicable

@BeaBF 

here is the Data

 

Order No.Production Line No.

Order1A
Order1B
Order1C
Order2A
Order3A
Order4C
Order4D
Order4E
Order5A
Order6C
Order7D
Order8E
Order8D
Anonymous
Not applicable

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors