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
gauri
Helper III
Helper III

How do i count distinct count from any column when all pending values are 0 and non 0

Hello,

 

In the screenshot below :

 

ss2.png

I want to calculate count of complete orders and incomplete orders , which will be calculated as follows :

For count of complete order : 

the product order will be complete when pending product qty is 0 for all the products ( reference is highlighted in green)

 

For count of incomplete orders :

The product order will be incomplete when pending product qty is either not 0 or is 0 with some qty values for different products with same cust id ( reference is highlighted in yellow)

 

How do i count these using dax.

 

Thanks

Gp

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@gauri , Create a new column like

if(sumx(filter(table, [cust_id] =earlier([cust_id])),[product_pending_qty])>0,"incomplete", "Complete")

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@gauri , Create a new column like

if(sumx(filter(table, [cust_id] =earlier([cust_id])),[product_pending_qty])>0,"incomplete", "Complete")

@amitchandak this dax worked after doing few modifications . Thank you

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.