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
joshua1990
Post Prodigy
Post Prodigy

Count all Orders regardless the Date Relationship

Hello everybody!

I need to calculate the number of orders with a specific status.

The order table has the following structure:

OrderStatusDate (key)Item (key)
15001.01.2019A

 

This table is linked to the calendar table and to the item master (Item > Area).

Now I need the calculate the number of orders that have the status "50" regardless of the date.

The following function is not working:

Status = COUNTX(FILTER(ALL(Orders),Orders[Status]=16),Orders[Order])

 

I get the correct number of work orders but this result is displayed at every area in the item master>

  • Area A = 1000
  • Area B = 1000

It should be something like

  • Area A = 500
  • Area B = 300
  • Area C = 200



1 ACCEPTED SOLUTION
kriscoupe
Solution Supplier
Solution Supplier

Hi @joshua1990,

 

Cant you do something like (assuming the table has one row per order)

 

CALCULATE(
    COUNTROWS( Orders ),
    ALL( Calendar Table ),
    Orders[Staus] = 50
)

 

Not sure if you wanted orders status to be 50 or 16 from your question but just replace accordingly.

 

Hope it helps

 

Kris

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@joshua1990 , Try one of the two

Status = COUNTX(FILTER((Orders),Orders[Status]=16),Orders[Order])
Status = COUNTX(FILTER(allselected(Orders),Orders[Status]=16),Orders[Order])

kriscoupe
Solution Supplier
Solution Supplier

Hi @joshua1990,

 

Cant you do something like (assuming the table has one row per order)

 

CALCULATE(
    COUNTROWS( Orders ),
    ALL( Calendar Table ),
    Orders[Staus] = 50
)

 

Not sure if you wanted orders status to be 50 or 16 from your question but just replace accordingly.

 

Hope it helps

 

Kris

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