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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
OwenA
Frequent Visitor

Use X-axis values as condition in an aggregation inequality

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. 

2 REPLIES 2
Anonymous
Not applicable

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:

  1. Create a new Date table with a column for each month. You can use the CALENDAR function in DAX to create a date range.
  2. Create a relationship between the Date table and your original data table using the signingDate column.
  3. Create a measure to count the number of clients. You can use the COUNT function in DAX to count the number of clientID entries.
  4. Add a line chart visual to your report. Drag the Month column from the Date table to the Axis field, and the measure you created in step 3 to the Values field.
  5. Add a slicer visual to your report and drag the salesmanID column to the Field section of the slicer.

 

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.           

ToddChitt
Super User
Super User

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?




Did I answer your question? If so, mark my post as a solution. Also consider helping someone else in the forums!

Proud to be a Super User!





Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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