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
hoosha_11
Helper I
Helper I

Optimizing DAX query

Hi,

I've included four DAX queries in one of the tables, each with a different QuestionID. But, when I try to refresh the dataset, it fails due to reaching the memory capacity limit of the premium capacity, despite the dataset being small.

Would changing "ALL" to "ALLEXCEPT" help in this situation?

Do you have any ideas on how I can optimize this query?

 

Thanks a lot!

 

Response =
CALCULATE(
MAX(Logs[Response]),
FILTER(
ALL(Logs),
Logs[InspectionId] = EARLIER ( Logs[InspectionId]) && Logs[QuestionID] = "112"
))

4 REPLIES 4
v-zhouwen-msft
Community Support
Community Support

Hi @tamerj1 ,thanks for the quick reply, I'll add further.

Hi @hoosha_11 ,

Regarding your question, I noticed that you are using the 'EARLIER' function, try to use a variable instead of the EARLIER function to improve the column definition of the calculation.

Response =
VAR CurrentInspectionId = Logs[InspectionId]
RETURN
    MAXX(
        FILTER(
            Logs,
           Logs[InspectionId] = CurrentInspectionId && Logs[QuestionID] = "112"
        ),
     Logs[Response]
    ) 

 

Use variables to improve your DAX formulas - DAX | Microsoft Learn

tamerj1
Super User
Super User

Hi @hoosha_11 

Looks like a calculated column if I'm not mistaken. 
If this is the case better to avoid CALCULATE and follow a No CALCULATE approach such as

Response =
MAXX (
FILTER (
Logs,
Logs[InspectionId] = EARLIER ( Logs[InspectionId] )
&& Logs[QuestionID] = "112"
),
Logs[Response]
)

Thank you @tamerj1 

Yes they are calculated columns. I tried the MAXX as you mentioned and I still get the memory error during a refresh. We are on A2 SKU with 5GM memory limit and the PBIX file is small.

@hoosha_11 

When you say "calculate columns", like how many? What DAX are you using to calculate them? How many columns and rows the table is?

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.

Top Solution Authors