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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
awitt
Helper III
Helper III

Filter Table Using Sum

I'm looking to create a measure that counts the number of single line orders in a table. For example, this table would yeild a result of 2 (or list the two order numbers out) since there were only two unique order #'s that only had a single item on the order. 

 

Question.PNG

 

I had written this but it clearly isn't working...

 

Single Line Orders = CALCULATE(
             DISTINCTCOUNT(Order #),
                Filter('Table'),
                   Sum('Table'[Item Qty) = 1)
)

2 REPLIES 2
v-xicai
Community Support
Community Support

Hi awitt,

 

For your DAX function, there are two expression errors like picture below, while it can't return the correct result after correct the DAX.

 2.png

To work the issue, you can follow steps below.

 

Firstly, you can create intermediate table Count_Table to count distinct Order.

 

3.jpg

 

 

 

 

 

 

 

 

 

 

 

 

4.png

 

 

 

 

Then, create measure named Single Line Orders to count the unique order.

 

Single Line Orders = CALCULATE(COUNT('Table'[Order #]),Count_Table[Count]=1)

 

Finally, return the result showing picture below.

 

5.png

 

 

 

 

 

 

 

 

 

Here is my test pbix file link: https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EUhaNajioVZGnIwAN2...

 

Best Regards,

Amy

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Zubair_Muhammad
Community Champion
Community Champion

@awitt 

 

try  following Measure

 

Measure =
COUNTROWS (
    FILTER (
        ALL ( TableName[Order#] ),
        CALCULATE ( COUNT ( TableName[Order#] ) ) = 1
    )
)

Helpful resources

Announcements
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.

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.