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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Wikolin
Helper I
Helper I

Find alternative price

Hi all.

 

I have this measure to calculate the total sales based on a price list.

 

The thing is that my date range starts before "ItemPrice[StartDate]" on some items.

When this occures want the oldest price on the item to be used.

For example if StartDate is 01.02.2023 and EndDate is 20.02.2023, on the date 15.01.2023 i want the value on 01.02.23-20.02.23 to be used, because there is no older dates in StartDate for this item.

 

 

NewSales = 
SUMX (
    DateTable,
    SUMX (
        FILTER (
            ItemPrice,
            ItemPrice[StartDate] <= DateTable[Date]
                && ItemPrice[NewEndDate] >= DateTable[Date]
        ),
        [SalesQuantity] * 'ItemPrice'[Price]
    )
)

 

3 REPLIES 3
lbendlin
Super User
Super User

read about the usage of MIN() with two parameters.

Thank you @lbendlin !
Is it possible for you to show me how to use MIN() in my measure?

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.