- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Medida Dax o Columna Calculada para calcular el total acumulado por semestre
Medida Dax o Columna Calculada para calcular el total acumulado por semestre, cual es la mejor opción y que recomendación me podrían dar para tener el total acumulado por semestre apartir de tabala calendario de fecha
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @mario1997 ,
You can try below formula to create measure or calculated column to get the cumulative total per semester.
measure:
Cumulative Total =
CALCULATE(
SUM('YourTable'[Amount]),
FILTER(
ALL('YourTable'),
'YourTable'[Semester] <= MAX('YourTable'[Semester])
)
)
calculated column:
Cumulative Total_ =
CALCULATE(
SUM('YourTable'[Amount]),
FILTER(
ALL('YourTable'),
'YourTable'[Semester] <= EARLIER('YourTable'[Semester])
)
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @mario1997 ,
You can try below formula to create measure or calculated column to get the cumulative total per semester.
measure:
Cumulative Total =
CALCULATE(
SUM('YourTable'[Amount]),
FILTER(
ALL('YourTable'),
'YourTable'[Semester] <= MAX('YourTable'[Semester])
)
)
calculated column:
Cumulative Total_ =
CALCULATE(
SUM('YourTable'[Amount]),
FILTER(
ALL('YourTable'),
'YourTable'[Semester] <= EARLIER('YourTable'[Semester])
)
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@mario1997 ,To calculate the accumulated total per semester in DAX, you can use a measure rather than a calculated column. Measures are generally more efficient for this type of calculation because they are evaluated in the context of the report and can dynamically respond to slicers and filters.
Like below
dax
AccumulatedTotalPerSemester =
CALCULATE(
SUM('YourTable'[YourValueColumn]),
FILTER(
ALL('DateTable'),
'DateTable'[Semester] <= MAX('DateTable'[Semester])
)
)
Proud to be a Super User! |
|

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
03-01-2024 12:31 AM | |||
07-19-2024 03:29 AM | |||
02-08-2024 04:10 PM | |||
08-07-2024 03:50 PM | |||
01-26-2024 04:45 AM |
User | Count |
---|---|
117 | |
100 | |
85 | |
53 | |
47 |