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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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