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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

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])

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
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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.