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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
hpayne93
Frequent Visitor

Calculate no. of new subscribers each month

Hi,

 

I need to calculate the number of new subscribers month to month. So from Jan to Feb 2022 this would be 279.

 

How do I do this using DAX?

 

Thanks

 

hpayne93_2-1701856708748.png

 

 

3 REPLIES 3
Vallirajap
Resolver III
Resolver III

Hii @hpayne93 
I hope the first solution is usefull for you. Please mark as a solution for the first reply. so that it is useful for upcoming visitors who else need this solution.

In the above scenario, add a .[Date] in the Dateadd function after the Date column

Ex :  Dateadd( 'table'[Date].[Date], -1, Month)

tempsnip.png

 

Don't forget to hit the Mark as a solution and kudo

 

Thank you

Vallirajap
Resolver III
Resolver III

Hii @hpayne93 

To find the Month over month(MOM), use the below Dax

Measure 3 =
Var _Prev_Month = CALCULATE(SUM('Table (3)'[Total Subscriber]), DATEADD('Table (3)'[Date].[Date], -1, MONTH))
Var _MOM = Sum('Table (3)'[Total Subscriber]) - _Prev_Month
RETURN
_MOM
 
Screenshot:
Vallirajap_0-1701865464992.png

Mark this as a solution

Thank you

Thanks for this!

 

It only seems to be showing total not the new subscribers for each month. Can you see where I'm going wrong?

 

 

hpayne93_0-1701953061486.png

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.