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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
Community Champion
Community Champion

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
Community Champion
Community Champion

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

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.