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
DM_BI
Helper III
Helper III

Variation of 2 running totals

Hello,

 

I have 2 measures (calculated with the quick measure Running Total) : 
- Real acum (which is the running total of my sales, what really was sold)

- Objetivo acum (which is the running toal of the objective we should do)

 

Now I want to know the variation between these 2 measures, to see if I am reaching my goal or not. So what I did was :

Var acum % = DIVIDE(('OBJ PI'[Real acum]-'OBJ PI'[Objectivo acum]);'OBJ PI'[Objectivo acum];0)

 

But I get the exact same result as the variation between my Real and my Objective. I mean, what I got was that my "normal" variation equals my "cumulative" variation, which is not true.

 

Anyone can help me with this?

 

Thank you!

 

D.

1 ACCEPTED SOLUTION

Hi @DM_BI,

 

After play with you sample, I found you can remove column defined in allselected function to get correct result value:

FACTURATION running total in MONTH = 
CALCULATE(
	SUM('Hoja1'[FACTURATION]),
	FILTER(
		ALLSELECTED('Hoja1'),
		ISONORAFTER('Hoja1'[MONTH], MAX('Hoja1'[MONTH]), DESC)
	)
)


OBJECTIVE FACTURATION running total in MONTH = 
CALCULATE(
	SUM('Hoja1'[OBJECTIVE FACTURATION]),
	FILTER(
		ALLSELECTED('Hoja1'),
		ISONORAFTER('Hoja1'[MONTH], MAX('Hoja1'[MONTH]), DESC)
	)
)

2.PNG

 

BTW, you can't create dynamic calculated column based on slicer/filter or dynamic measure.(when you use measure in calculate column measure result will been fix)

Calculated Column/Table Change Dynamically According to Slicer Selection in the Report.

 

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

13 REPLIES 13

Can you show some data example?

 

 

 

 

 

 

ejemplo var running total.png

 

I can show you an exemple : in november and december my var acum (on the right) is equal is to my variation (on the left) which is not normal.  Sorry I am not allowed to share the figures 😞 I hope it's enough to understand. If not please ask me more info.

 

Thank you for your help

 

DM

"Objectivo Acumulado" is wrong to? is showing the same value.

No it's normal because in our case November is the first month of the year so you cant' see the acum for November. But for december it's ok because it's the sum of november+december.

Maybe the problems are the two measures created in quick measures. CAn you paste it here?

Yes they are created in quick measures : 

 

Real acum =
CALCULATE(
SUM('OBJ PI'[Real]);
FILTER(
CALCULATETABLE(
SUMMARIZE('OBJ PI'; 'OBJ PI'[num_mes_inter]; 'OBJ PI'[MES INTER]);
ALLSELECTED('OBJ PI')
);
ISONORAFTER(
'OBJ PI'[num_mes_inter]; MAX('OBJ PI'[num_mes_inter]); DESC;
'OBJ PI'[MES INTER]; MAX('OBJ PI'[MES INTER]); DESC
)
)
)

 

 

Objectivo acum =
CALCULATE(
SUM('OBJ PI'[Objetivo PI]);
FILTER(
CALCULATETABLE(
SUMMARIZE('OBJ PI'; 'OBJ PI'[num_mes_inter]; 'OBJ PI'[MES INTER]);
ALLSELECTED('OBJ PI')
);
ISONORAFTER(
'OBJ PI'[num_mes_inter]; MAX('OBJ PI'[num_mes_inter]); DESC;
'OBJ PI'[MES INTER]; MAX('OBJ PI'[MES INTER]); DESC
)
)
)

try it

Real acum =
sumx(
FILTER(
CALCULATETABLE(
SUMMARIZE('OBJ PI'; 'OBJ PI'[num_mes_inter]; 'OBJ PI'[MES INTER]);
ALLSELECTED('OBJ PI')
);
ISONORAFTER(
'OBJ PI'[num_mes_inter]; MAX('OBJ PI'[num_mes_inter]); DESC;
'OBJ PI'[MES INTER]; MAX('OBJ PI'[MES INTER]); DESC
)
);
SUM('OBJ PI'[Real])
)


Objectivo acum =
SUMX(
FILTER(
CALCULATETABLE(
SUMMARIZE('OBJ PI'; 'OBJ PI'[num_mes_inter]; 'OBJ PI'[MES INTER]);
ALLSELECTED('OBJ PI')
);
ISONORAFTER(
'OBJ PI'[num_mes_inter]; MAX('OBJ PI'[num_mes_inter]); DESC;
'OBJ PI'[MES INTER]; MAX('OBJ PI'[MES INTER]); DESC
)
);SUM('OBJ PI'[Objetivo PI])
)

Thank you, I tried with your formula but still have the same "var acum%" (same as on the left)

HI @DM_BI,

 

Can you please share a pbix file with part of sample data for test? It is hard to testing and coding formula without any sample data.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Hi!

 

Of course, I made a sample. You will see that the variation is ok but the variation of running totals is not (should be -16,66%). I don't know why. In my team we need to know for example if in january+february we have achieved the objective of january+february or not.

 

The only problem is that I don't see any icon to insert a file here, do you know how to upload it?

 

Thank you for your help!!

 

DM

HI @DM_BI,

 

You can upload sample file to onedrive or google drive and share link here.

 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

Hi @DM_BI,

 

After play with you sample, I found you can remove column defined in allselected function to get correct result value:

FACTURATION running total in MONTH = 
CALCULATE(
	SUM('Hoja1'[FACTURATION]),
	FILTER(
		ALLSELECTED('Hoja1'),
		ISONORAFTER('Hoja1'[MONTH], MAX('Hoja1'[MONTH]), DESC)
	)
)


OBJECTIVE FACTURATION running total in MONTH = 
CALCULATE(
	SUM('Hoja1'[OBJECTIVE FACTURATION]),
	FILTER(
		ALLSELECTED('Hoja1'),
		ISONORAFTER('Hoja1'[MONTH], MAX('Hoja1'[MONTH]), DESC)
	)
)

2.PNG

 

BTW, you can't create dynamic calculated column based on slicer/filter or dynamic measure.(when you use measure in calculate column measure result will been fix)

Calculated Column/Table Change Dynamically According to Slicer Selection in the Report.

 

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help 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.