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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
bhmiller89
Helper V
Helper V

Calculate the SUM of Sales$ using a date range

Data Points:

"OktoInvoiceDate," "OKtoInvoiceDate+90", "SaleDate", "Sale$"

 

I need to calculate the SUM(Sale$) that took place during the time frame between "OktoInvoiceDate" and "OktoInvoiceDate+90"

 

These need to be measures

 

I can't figure it out! 

1 REPLY 1
v-ljerr-msft
Employee
Employee

Hi @bhmiller89,

 

If I understand you correctly, you should be able to follow steps below to get your expected result. Smiley Happy

 

1. Add an individual Calendar table if you don't have one yet.

Date = CALENDARAUTO()

2. Then you can use the formula below to create a measure to calculate the SUM(Sale$) for a selected date that took place during the time frame between "OktoInvoiceDate" and "OktoInvoiceDate+90". 

measure =
VAR currentDate =
    MAX ( 'Date'[Date] )
RETURN
    CALCULATE (
        SUM ( Table1[Sale$] ),
        FILTER (
            Table1,
            Table1[OktoInvoiceDate] <= currentDate
                && Table1[OktoInvoiceDate+90] >= currentDate
        )
    )

 

Regards

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

Power BI Carousel June 2024

Power BI Monthly Update - June 2024

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

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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