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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
PowerMan1
Frequent Visitor

Avoid Allexept

Hi, 

 

I have problem with my running totals. it is very slow. I think it's because of the allexept function.

can i avoid to use allexcept function and made my calculation more optimil ?

Runing Total = 
VAR CurrantIndex = MIN ( 'ShiftTable'[Index] )
VAR LastReset = [ResetIndex]
VAR IndexToUse =
    FILTER (
        ALLEXCEPT ( ShiftTable, Branches[Branch], Kadr_LookUP[Name], 'Date'[Year], 'Date'[Month], 'Date'[Month Day] ),
        ShiftTable[Index] >= CurrantIndex && LastReset = [ResetIndex] )
        
VAR Result = CALCULATE ( SUMX ( ShiftTable, ShiftTable[Real Time] ), IndexToUse )
RETURN Result

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @PowerMan1 
Take a look at the linked discussion:

https://stackoverflow.com/questions/76393885/powerbi-running-total-over-large-number-of-values

may be window () function can help

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@PowerMan1 

Can you clarify what your measure is supposed to do here and in what context it runs? 
Why LastReset = [ResetIndex]  is evaluated again whereas you have already assigned a variable above.

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

i want to reset data with this measure (in every even index):

 

ResetIndex = 
VAR Res = MAX ( ShiftTable[Index] )
RETURN
IF ( ISODD ( Res ), Res + 1, Res  )

and context is:
year
month
day
branch
personN

sorry for my English

Ritaf1983
Super User
Super User

Hi @PowerMan1 
Take a look at the linked discussion:

https://stackoverflow.com/questions/76393885/powerbi-running-total-over-large-number-of-values

may be window () function can help

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

 

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

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.

Top Solution Authors