The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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!
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
User | Count |
---|---|
65 | |
62 | |
60 | |
53 | |
30 |
User | Count |
---|---|
181 | |
82 | |
67 | |
48 | |
44 |