The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have three columns of data: salesmanID, clientID, and signingDate. I'd like to build a line graph that shows total number of clients by month. There will be a slicer for the salesmanID so each salemans client population can shown.
What ways could I aggregate the client populaton given the above information?
Thoughts I had: Use the displayed month in the horizaontal axis as part of an inequality that checks if the signingDate is less than that month, then have PowerBI count the number of true inequalities.
Thanks in Advance.
Hi @OwenA ,
To create a line graph showing the total number of clients by month with a slicer for salesmanID, you can follow these steps:
Here's an example of the DAX measure to count clients:
Client Count = COUNT('YourDataTable'[clientID])
Replace 'YourDataTable' with the name of your data table.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I would do a CLUSTERED COLUMN chart. Put MONTH(Signing Date) on the X azis. Put Salesman ID as the Legend (that groups all salesman together in one Monthly cluster. Then for the Y Axis do a COUNT(CleintID).
Do you have sample data you can share?
Proud to be a Super User! | |