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

Data Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more

Reply
jakub_klocek
Frequent Visitor

Finding value between dates

Hey,

 

first hello, it´s my first post here 🙂

 

I have my ('Order'[Product]) which has been sold on ('Order'[DateNew]).

Now I need to find ('Price(2)'[Old price]) based on date between ('Price(2)'[Old from]) and (Price(2)'[New from]).

 

If not found then newest ('Price(2)'[Old price]).

I created this formula, but SUM is not best expression.

 

Any ideas?

 

VK Neu = CALCULATE( SUM('Price(2)'[Old price]),
FILTER( 'Price(2)',
'Price(2)'[Old from] <= 'Order'[DateNew] &&
'Price(2)'[New from] >= 'Order'[DateNew] &&
'Price(2)'[Product] = 'Order'[Product]
))
 
 
 
Thanks!
Jakub
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jakub_klocek ,

 

Is the result in your screenshot the result you want? I have test by your data and code. I think it works well if you build a calculated column.

Order Table:

3.png

Price(2) Table:

1.png

Add a calcualted column in Order Table.

VK Neu = 
CALCULATE (
    SUM ( 'Price(2)'[Old price] ),
    FILTER (
        'Price(2)',
        'Price(2)'[Old from] <= 'Order'[DateNew]
            && 'Price(2)'[New from] >= 'Order'[DateNew]
            && 'Price(2)'[Product] = 'Order'[Product]
    )
)

Output:

2.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@jakub_klocek , are there two table Price and Price(2) ?


Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Sorry, my bad, only one Price(2) Table.

 

jakub_klocek_0-1643973143110.png

 

 

Anonymous
Not applicable

Hi @jakub_klocek ,

 

Is the result in your screenshot the result you want? I have test by your data and code. I think it works well if you build a calculated column.

Order Table:

3.png

Price(2) Table:

1.png

Add a calcualted column in Order Table.

VK Neu = 
CALCULATE (
    SUM ( 'Price(2)'[Old price] ),
    FILTER (
        'Price(2)',
        'Price(2)'[Old from] <= 'Order'[DateNew]
            && 'Price(2)'[New from] >= 'Order'[DateNew]
            && 'Price(2)'[Product] = 'Order'[Product]
    )
)

Output:

2.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.