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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hyggins
Helper I
Helper I

Performance question about looking up a value between two dates

I have two tables: Quote and Rate related by QuoteId (see image). A quote can have multiple rates but only one can exist at any given point in time as determined by Begin and EndDates. The sales person is associated to the rate. I've written a calculated column that correctly pulls the sales person from the rates at the time of the quote (QuoteDate).

Model mockupModel mockup

This answers the question "Who was the sales person for a given rate at the time of the quote?"

 

Here is my calculated column:

SalesPersonId(fx) = CALCULATE(
                                                    MAX(Rate[SalesPersonId])
                                                   ,FILTER(
                                                               Rate,
                                                               Rate[BeginDate] <= Quote[QuoteDate]
                                                                 && Rate[EndDate] >= Quote[QuoteDate]
                                                                 && Rate[QuoteId] = Quote[QuoteId]))

 

Again, this works, but it seems very slow. It takes about 4-5 minutes of spinning on my desktop. The dataset is only about 120k rows.

 

My question: is there is a better/faster/easier way to do this? The performance just seems so slow.

 

Thank you!!

2 REPLIES 2
Anonymous
Not applicable

Think the issue here is that you are using Filter on a Fact table, which is generally bad for performance. Any chance you can upload some sample data?

Actually, neither of these are fact tables. No measures are defined. The Rate table is only needed to define the SalesPersonId on the Quote table. The Quote table is then used as a dimenision for a larger dataset (not shown). This is a simplified example for the post.

 

And I have the Quote and Rate table data available here: sample data file

 

Thank you!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.