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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
KPerrySHI
Frequent Visitor

Count of new customers by month

Hello All,

 

I'm looking to track when a customer makes its first purchase, and capture the month on a bar chart with month/year as the X-axis.

 

I can isolate the first purchase date, but when I apply it to the chart, the customer is counted again each month if they make another purchase. How do I just capture that first month they purchase in the visual?

 

_FirstOrder =

 CALCULATE (
    MIN ( DimDate[CalendarDate] ),
    ALLSELECTED ( DimDate[CalendarDate] ),
    FactOrderHistory
)
 

_CustomersConverted =
CALCULATE(
COUNT ( DimCustomers[CustomerID] ),
FILTER ( DimDate, NOT(ISBLANK([_FirstOrder] ) ) )
)

 

That DAX isn't right but that's how I can best express what I want it to do logically. I appreciate any advice.

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

Hi, @KPerrySHI 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

All measures are in the sample pbix file, and all steps are numbered in front of each measure.

 

Picture4.png

 

 

https://www.dropbox.com/s/t5azua5evn7p74w/kperryshi.pbix?dl=0 

 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

Hi, @KPerrySHI 

Please check the below picture and the sample pbix file's link down below, whether it is what you are looking for.

All measures are in the sample pbix file, and all steps are numbered in front of each measure.

 

Picture4.png

 

 

https://www.dropbox.com/s/t5azua5evn7p74w/kperryshi.pbix?dl=0 

 

 

Hi, My name is Jihwan Kim.

 

If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.

 

Linkedin: https://www.linkedin.com/in/jihwankim1975/


If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Thank you for putting that together. I can't quite get it to work on my side yet, maybe because I'm connected to an analysis service and a different setup is being used, but I understand what you're trying to do here. Shame there isn't an out of the box solution for this, but I appreciate the effort.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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.