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
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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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