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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
bhmiller89
Helper V
Helper V

Getting a value based on the MAX Date

I have a dataset that includes columns "Invoice Date" and "InvoiceAmt". I want to show the InvoiceAmt of the most recent Invoice (MAX Invoice Date) So that I can compare it to the Moving 3 Month Average of InvoiceAmt (Already calculated) 

1 ACCEPTED SOLUTION
Mariusz
Community Champion
Community Champion

Hi @bhmiller89 

You can try the below for your MAX

Sales Last Invoice = 
CALCULATE(
    [Sales], -- this where you place your InvoiceAmt 
    TREATAS( 
        LASTDATE( Sales[OrderDateKey] ), -- this is where you place your Invoice Date
        'Calendar'[Date] 
    )
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski


 

View solution in original post

1 REPLY 1
Mariusz
Community Champion
Community Champion

Hi @bhmiller89 

You can try the below for your MAX

Sales Last Invoice = 
CALCULATE(
    [Sales], -- this where you place your InvoiceAmt 
    TREATAS( 
        LASTDATE( Sales[OrderDateKey] ), -- this is where you place your Invoice Date
        'Calendar'[Date] 
    )
)

 

Best Regards,
Mariusz

If this post helps, then please consider Accepting it as the solution.

Please feel free to connect with me.
Mariusz Repczynski


 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.