Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
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
Solved! Go to Solution.
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
@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.
⭕ 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
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
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 29 | |
| 26 | |
| 25 |