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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
badgerr11
Regular Visitor

How to build report/measure showing month to month data

I'm trying to build into a report a tile that will show a break down month by month how many clients have signed up for one of our services. This would go back from the start of the service (a couple of years ago) up to the current month. I'm not sure what to use. Is this something for DAX or M? Thanks!

2 REPLIES 2
v-lili6-msft
Community Support
Community Support

Hi@ badgerr11 
 
please try this demo,if the result match your expected output.
 
 
Best Regards,
Lin
Community Support Team _ Lin
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 @badgerr11

 

You can do this in Power BI visuals and using some DAX, quitestraightforward one.

 

Create a measure cntofcustomer= COUNT(Table1[Customer_ID])

Assume you have Enroll_date, Create a Year-Month column with DAX :  CONCATENATE(YEAR(Table1[Enroll_Date]), MONTH(Table1[Enroll_Date]) )

 

Now pull the required dimension along with the above created measure/ object.

 

Foe Ex: Pull Service_Categoy, Year_Month, CountofCustomer.

 

This will giev the required result.

 

Thanks
Raj

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors