Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 =
_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.
Solved! Go to Solution.
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.
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/
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.
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/
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.