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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
timknox
Helper II
Helper II

Problema total en ejecución

Hola

Estoy tratando de crear un gráfico apilado de un total en ejecución, pero estoy teniendo grandes problemas.

Lo que estoy tratando de conseguir es un gráfico como este:

timknox_0-1600343866350.png

pero estoy recibiendo esto:

timknox_1-1600343901530.png

Tengo un archivo PBIX de muestra aquí:

Agradecido si alguien puede ayudarme por favor

1 ACCEPTED SOLUTION

Hola @timknox ,

Por favor, intente esto:

Cree una nueva tabla de fechas:

Date = CALENDARAUTO()

Cree una medida:

Running Total = 
CALCULATE(
	SUM(Sheet1[Value]),FILTER(ALL('Date'),'Date'[Date]<=MAX('Date'[Date])))

v-xuding-msft_0-1602142827873.png

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@timknox, pruebe una medida como

CALCULATE(
	SUM(Sheet1[Value]),FILTER(ALL(Sheet1),Sheet1[Date]<=MAX(Sheet1[Date])))

En caso de que desee toda la fecha. Mover eso a una tabla separada o usar tabla de fechas

CALCULATE(
	SUM(Sheet1[Value]),FILTER(ALL(DAte),DAte[Date]<=MAX(DAte[Date])))

@

gracias por esto, pero lo intenté según el ejemplo PBIX.....

alguna idea?

Hola @timknox ,

Por favor, intente esto:

Cree una nueva tabla de fechas:

Date = CALENDARAUTO()

Cree una medida:

Running Total = 
CALCULATE(
	SUM(Sheet1[Value]),FILTER(ALL('Date'),'Date'[Date]<=MAX('Date'[Date])))

v-xuding-msft_0-1602142827873.png

Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.