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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
PPars2025
Helper I
Helper I

Correct modeling for my report type?

Good morning, everyone. 

 

I have a report that tracks employee performace that comes from field audits.  In this report are employee names, dates and average scoring.  The scoring range is 1-5 which is assigned to the Y axis and the date is assigned to the X axis.  I am using a line chart for this report and I'm having trouble with how to add the employee names (27 in total) to the Y axis.  I'm also wanting each score grading to represent the employee by a different color.  My dataset come from 2 Excel sheets and all data is formatted to tables witht he correct types assigned in both Excel and PBI (via Transform Data).  Also, my report also have the following tabs:

Dashboard

1st. Qtr.

2nd Qtr.

3rd. Qtr.

4th. Qtr.

Results by Supervisor

2 REPLIES 2
PPars2025
Helper I
Helper I

Thank you.

 

@DataNinja777 

After assigning both axes and legend, I no longer have lines in the chart but rather color coded dots.  What else is needed for the lines to return?

 

PPars2025_0-1737132763466.png

 

DataNinja777
Super User
Super User

Hi @PPars2025 ,

 

To address your challenge of visualizing employee performance scores on a line chart in Power BI, while also incorporating quarterly performance and employee names, it’s important to make strategic use of Power BI’s features. The Y-axis in a line chart is designed for numerical or categorical data, so directly placing employee names there isn’t possible. However, you can create a clear and informative visualization by leveraging legends, tooltips, and grouping.

Start by assigning the Date field to the X-axis and the average scoring measure to the Y-axis. To differentiate performance scores for each employee, drag the Employee Name field into the Legend section of the line chart. This will generate separate lines for each employee, using colors in the legend to distinguish them. Enabling data labels in the Format pane ensures that scores are displayed directly on the chart. Customizing the tooltips to include employee names, scores, and other relevant details will further enhance the chart’s clarity.

If you need to show performance aggregated by quarter, you can group dates into quarters using a calculated column in DAX, such as:

Quarter = "Q" & ROUNDUP(MONTH('Employee Table'[Date]) / 3, 0)

This formula generates a new column that groups dates into "Q1," "Q2," etc. You can then use this quarter field on the X-axis of your line chart to aggregate and display performance scores by quarter. The Employee Name field can still be included in the Legend to create lines representing each employee's performance across quarters.

For a more customized approach where employee names are effectively represented on the Y-axis, you can assign a numeric rank to each employee. This can be done with the following DAX formula:

Employee Rank = RANKX(ALL('Employee Table'), 'Employee Table'[Employee Name], , ASC)

You can then assign this Employee Rank column to the Y-axis of the line chart, with the Date or Quarter field on the X-axis. The average scoring measure remains as the values, and employee names can be included in the tooltip to maintain clarity. Formatting the chart title or legend to explain the relationship between the ranks and employee names ensures the visualization is intuitive.

In reports with multiple tabs, such as those organized by quarters or supervisors, slicers can help dynamically filter the data across all tabs. Synchronizing slicers ensures consistency, allowing users to seamlessly navigate through the report. Bookmarks and buttons can also improve navigation and create a polished experience. Given that the dataset includes 27 employees, it’s important to avoid overcrowding the chart. Breaking down data by supervisor or department, or using filters to display fewer employees at a time, can significantly improve readability.

These approaches ensure your report captures employee performance effectively across both time and organizational dimensions, while maintaining clarity and usability.

 

Best regards,

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.