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
navrichard
New Member

Custom QTR and sum by running year

Hi team,

 

I have a column that is connected to a SSAS cube and has multiple dimensions and measures and we have a custom quarter already built in, but i need to have a running QTR total by Fiscal Yr. and also calculate the % trend. any help will be much appreciated, havnt worked much on PBi, a step by step guide will really help to learn and share.

 

Cumm_total.JPG

 

 

 

 

 

3 REPLIES 3
v-danhe-msft
Employee
Employee

Hi @navrichard,

Based on my test, you could refer to below steps:

Your sample data:

1.PNG

Create three calculated columns:

Mid2 = MID('Table1'[FYQTR],3,2)
Cumm = CALCULATE(SUM(Table1[S(Mn)]),FILTER('Table1','Table1'[FYQTR]<=EARLIER(Table1[FYQTR])&&'Table1'[Mid2]=EARLIER(Table1[Mid2])))
Trend = var a=SUBSTITUTE('Table1'[FYQTR],MID('Table1'[FYQTR],3,2),[Mid2]-1)
var b=CALCULATE(SUM('Table1'[Cumm]),FILTER('Table1','Table1'[FYQTR]=a))
var c= IF(b=BLANK(),BLANK(),IF(Table1[Cumm]=0,0,([Cumm]-b)/b))+0
return IF([Cumm]=0,BLANK(),c)

Result:

1.PNG

You could also download the pbix file to have a view.

 

Regards,

Daniel He

 

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-danhe-msft
Employee
Employee

Hi @navrichard,

You could create a new measure:

Measure = CALCULATE(SUM(YourTable[$Cumm.]),FILTER(ALL(YourTable),'YourTable'[$Cumm.]<=MAX('YourTable'[$Cumm.])))
% trend = CALCULATE(SUM(YourTable[%Trend]),FILTER(ALL(YourTable),'YourTable'[%Trend]<=MAX('YourTable'[%Trend])))

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi Daniel

 

Thank you for your reply, but unfortunately the numbers are incorrect as seen in the first image

 

Image.JPG

 

What i Ma trying to do is as below

 

image2.JPG

 

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.

Top Solution Authors