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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
MVenables
Advocate II
Advocate II

Last Date Supplied DAX Help Please

Hi all,

I have a measure in place called [PO QTY Sent] this just Sums PurchaseOrder[QtySent].

 

My goal with this dax i need is to be able to see the LASTDATESUPPLIED by using that and PurchaseOrder[ProcessDate]. In my screenshot below it contains all of these fields. But i want LastDateSupplied to show me the 22 October 2024 date as that was the last time PO QTY Sent was more than "0". This is so i can identify when we actually had stock delivered to us last.

 

I also want the condition when [PO QTY Sent] is more than 0 show as blank.

MVenables_0-1732184160858.png

The below is the dax im using that currently shows me the incorrect dates as the 3 dates above i want them all to say 22/10/2024 which is in theory the last date it was [PO QTY Sent] greater than "0".

LastDateSupplied =
IF(
    [PO QTY Sent] > 0,
    BLANK(),
    CALCULATE(
        MAX(PurchaseOrder[ProcessDate]),
        FILTER(
            PurchaseOrder,
            [PO QTY Sent] = 0)))
 
Any help will be great, i know using the MAX is causing this issue but need a work around.
 
Thanks for reading, hope you can help. 
1 ACCEPTED SOLUTION

@MVenables - It's showing against Process Dates where the result is BLANK this is the same as 0. Notice it does not show on 22/10/2024 where the value is above 0. 

 

You could apply a filter to this table to remove the BLANK rows from PO QTY Sent.

View solution in original post

4 REPLIES 4
mark_endicott
Super User
Super User

@MVenables - Try this

 

IF(
    [PO QTY Sent] > 0,
    BLANK(),
    CALCULATE(
        MAX(PurchaseOrder[ProcessDate]),
        FILTER(
            ALL(PurchaseOrder[ProcessDate]),
            [PO QTY Sent] > 0)))

 

If this works, please accept as the solution to help others with the same issue

Hi Mark,

 

Its almost there its just showing me 22/10/2024 against every date now though as per below. Rather than using the original screenshot as an example. i would need it to show me 22/10/2024 on just the top 3 lines as [PO QTY Sent] is 0

MVenables_0-1732185444081.png

 

@MVenables - It's showing against Process Dates where the result is BLANK this is the same as 0. Notice it does not show on 22/10/2024 where the value is above 0. 

 

You could apply a filter to this table to remove the BLANK rows from PO QTY Sent.

@mark_endicott thanks Mark, im just going to remove the blank out of the dax, and use a visual filter to remove the blanks from the table.

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

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

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.