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
Anonymous
Not applicable

Sum measure with multiple fitlers

Hello,

 

I am trying to create a key measure called Next PO Qty. I want the measure to return the Qty Ordered for the item on the PO with the minimum Expected Delivery Date AND has a status of "O" (i.e. Open). In the sample provided below I would expect the result for item 10007 to be 54.

 

PO NumberItem NumberQty OrderedExpected Delivery DateStatus
0000529210007547/24/2019O
00006212100072709/11/2019O
00006162100072709/10/2019O
00006051100072709/3/2019C
00005934100071628/28/2019C
00005809100072708/21/2019C
00005660100072168/13/2019C
1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous 

1. Place Item Number in a table visual

2. Place this mesure in the visual

 

Next PO Qty =
VAR EarliestDateO_ = CALCULATE ( MIN ( Table1[Delivery Date] ), Table1[Status] = "O" )
RETURN
    CALCULATE (
        DISTINCT ( Table1[Qty Ordered] ),
        Table1[Delivery Date] = EarliestDateO_,
        Table1[Status] = "O"
    )

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

View solution in original post

1 REPLY 1
AlB
Super User
Super User

Hi @Anonymous 

1. Place Item Number in a table visual

2. Place this mesure in the visual

 

Next PO Qty =
VAR EarliestDateO_ = CALCULATE ( MIN ( Table1[Delivery Date] ), Table1[Status] = "O" )
RETURN
    CALCULATE (
        DISTINCT ( Table1[Qty Ordered] ),
        Table1[Delivery Date] = EarliestDateO_,
        Table1[Status] = "O"
    )

 

Please mark the question solved when done and consider giving kudos if posts are helpful.

Cheers  Datanaut

 

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.