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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

Problem with Count

I am struggling to count and Identify the products with more than one delivery days value. Here is a simple dataset:

Here, Products A, C and E have more than one delivery days value, while product B  and D has only one . The original dataset has thousands of rows and I will like to identify those Products with more than one delivery days value. Please bear in mind that the datasource is a live connection therefore i cannot create columns, or other flexibilities. Your ideas will be very much appreciated! 

 

count.PNG

1 ACCEPTED SOLUTION

Hi, @Anonymous 

Take a try  measure as below in your live connection model :

 

Count = 
CALCULATE(
    COUNTROWS('Table 1'),
    FILTER(
        ALL('Table 1'),
        'Table 1'[Product] in DISTINCT('Table 1'[Product])
    )
)

 

56.png

 

 

Best Regards,
Community Support Team _ Eason

 

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

@Anonymous , Try a measure like

countx(filter(summarize(Table, Table[product], "_1", distinctcount(Table[Delivery Days])),[_1] >1),[product])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

I missed and information, the Product and Delivery days are from different tables in the model! Sorry about not mentioning that earlier

Hi, @Anonymous 

Take a try  measure as below in your live connection model :

 

Count = 
CALCULATE(
    COUNTROWS('Table 1'),
    FILTER(
        ALL('Table 1'),
        'Table 1'[Product] in DISTINCT('Table 1'[Product])
    )
)

 

56.png

 

 

Best Regards,
Community Support Team _ Eason

 

@Anonymous ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi  Amitchandak,

Thanks for the response, however the figure the formula derived is wrong. 

 

@amitchandak 

 

 

 

 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon &SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.