cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Analitika
Post Prodigy
Post Prodigy

How optimize measure in order to consume less resources in Power BI

Hello,

 

I would like to ask how to reduce resources by optmizing measure in Power BI. Because I added new measures and visual loading slow.

Here is an example:

Filtered measure_t = 
var a = SUMX (
    FILTER (
        VALUES ( 'N08-Klientai'[N08_PAV] ),
        [20_2_1_DATA PRADELSIMAS] >= 31 && [20_2_1_DATA PRADELSIMAS]<=60
    ),
    CALCULATE ( [18_1_0_BENDRA SKOLA (nuo istorijos pradzios)] )
)
return a 
18_1_0_BENDRA SKOLA (nuo istorijos pradzios) is a measure also.

 

 

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @Analitika ,

Please try below dax formula:

Filtered measure_t =
VAR _measure = [18_1_0_BENDRA SKOLA (nuo istorijos pradzios)]
VAR _tmp =
    FILTER (
        VALUES ( 'N08-Klientai'[N08_PAV] ),
        [20_2_1_DATA PRADELSIMAS] >= 31
            && [20_2_1_DATA PRADELSIMAS] <= 60
    )
VAR a =
    SUMX ( tmp, _measure )
RETURN
    a

For more details, you can read related document: DAX Best Practices | MAQ Software Insights

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Does it make quicker calculation?

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Top Solution Authors