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

A new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.

Reply
Anonymous
Not applicable

Percentage growth by month

Hi all, 

 

I'm trying to show the percentage growth of numbers of events in a process by month/week, but I can't achieve it. I have used the measure below, but it only shows the total growth, and not by month. 

 

% Change =
DIVIDE(
CALCULATE(
COUNT(Data[Which stage is the current property at]),
FILTER( 'Dates', 'Dates'[Month]=MAX('Dates'[Month] )
)
),
CALCULATE(
COUNT(Data[Which stage is the current property at]),
FILTER('Dates', 'Dates'[Month]=MIN('Dates'[Month])))
,0)
- 1
 
This is the database
 
DateWhich stage is the current property at
24/08/2021 11:54Stage 5 
07/09/2021 10:42Stage 1 
07/09/2021 11:11Stage 1 
09/09/2021 08:37Stage 1 
09/09/2021 10:58Stage 5 
09/09/2021 14:48Stage 4 
13/09/2021 11:19Stage 4 
16/09/2021 09:10Stage 4 
20/09/2021 12:22Stage 1 
21/09/2021 09:27Stage 4 
07/10/2021 09:07Stage 3 
14/10/2021 16:57Stage 4 
04/11/2021 17:05Stage 2 
09/11/2021 16:55Stage 4 
23/11/2021 09:00Stage 4 
01/12/2021 12:28Stage Other
02/12/2021 10:38Stage 4 

 

Does anybody know have an idea on how to make to show the growth by month and by stage?

 

Thanks

1 ACCEPTED SOLUTION

Hi, @Anonymous ;

Try it.

% Change = 
var _curr=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),0)&&[Which stage is the current property at]=MAX([Which stage is the current property at])))
var _pre=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),-1)&&[Which stage is the current property at]=MAX([Which stage is the current property at])))
return DIVIDE(_curr,_pre,1)-1

The final output is shown below:

vyalanwumsft_0-1646790487506.png

Best Regards,
Community Support Team_ Yalan Wu
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

5 REPLIES 5
v-yalanwu-msft
Community Support
Community Support

Hi, @Anonymous ;

Try it.

% Change = 
var _curr=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),0)))
var _pre=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),-1)))
return DIVIDE(_curr,_pre,1)-1

The final output is shown below:

vyalanwumsft_0-1646716092700.png

vyalanwumsft_1-1646716119495.png


Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi @v-yalanwu-msft the % changes are by a total of each month, but when split by stage it doesn't work. E.g. in Stage 4 from Sep (4 entries) to Oct (1 entry), it should show -75%. Is there a way to show by month and by stage?

Hi, @Anonymous ;

Try it.

% Change = 
var _curr=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),0)&&[Which stage is the current property at]=MAX([Which stage is the current property at])))
var _pre=CALCULATE(COUNT(Data[Which stage is the current property at]),FILTER(ALLSELECTED(Data),EOMONTH([Date],0)=EOMONTH(MAX([Date]),-1)&&[Which stage is the current property at]=MAX([Which stage is the current property at])))
return DIVIDE(_curr,_pre,1)-1

The final output is shown below:

vyalanwumsft_0-1646790487506.png

Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

VijayP
Super User
Super User

@Anonymous 

It is better to show What is the outcome look like to give a better solution!




Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


Anonymous
Not applicable

This is the output I have got.

 

ADEI20_1-1646400627653.png

 

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.