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
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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel

Power BI Monthly Update - May 2024

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

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.