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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
PRock
New Member

Employee Training Status

Hello everyone. Bottom line up front, I am putting together an employee training dashboard to show training status for each employee. I have the data for each courses completed by each employee, but there are required training that employees have not completed. I manually created a new table that list all of the required courses and trying to figure out the best way to tackle this for my Dashboard using Power BI.

 

For example:

 

Data pulled from learning center:

PRock_0-1697899698493.png

 

The required training/course list:

PRock_1-1697899744725.png

 

Then I want to be able to add "Complete" and "Incomplete" for each training an employee has completed.

 

Please assist and thank you!

 

All the best,

1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey @PRock ,

 

I created a little pbix file that you can find here:

I followed the principles of dimensional modeling and created a star schema: Simple Model - Training.pbix

 

TomMartens_0-1697959412846.png

I recommend reading this article about dimensional modeling and the importance of start schemas for Power BI: https://learn.microsoft.com/en-us/power-bi/guidance/star-schema?WT.mc_id=DP-MVP-5003068

 

I created two measures "" and "".

The first one is counting how many trainings an Emp ID has completed:

completed Trainings = COUNTROWS( 'Completed Trainings' ) 

and the second measure counts the number of trainings an Emp ID has still to complete based on the number of rows in the table "Required Trainings":

open Trainings = 
var currentEmp = SELECTEDVALUE( 'Employees'[Emp ID] )
var completedTrainings = CALCULATE( [completed Trainings] , 'Completed Trainings'[Emp ID] = currentEmp )
return

COUNTROWS( 'Required Trainings' ) - completedTrainings

The model and the measures allow to create a simple visual like the one below:
image.png
Hopefully, this helps to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

4 REPLIES 4
Streakenw
New Member

One way to streamline the process is by automating the comparison of completed vs. required courses using calculated columns or measures. This would let you mark each training as "Complete" or "Incomplete" based on course completion.

SPAC
Frequent Visitor

Hello Tom,

 

This is perfect and thank you!

 

I need adjust certain values from the report I pull and will incorporate the following measures you've shared. I will also figure out how I am going to lookup or match the courses/training since I manually created the required training because the actual completed training is pull from a learning center system. This way, I won't have to manually clean up the pulled report every time I update the dashboard.

TomMartens
Super User
Super User

Hey @PRock ,

 

I created a little pbix file that you can find here:

I followed the principles of dimensional modeling and created a star schema: Simple Model - Training.pbix

 

TomMartens_0-1697959412846.png

I recommend reading this article about dimensional modeling and the importance of start schemas for Power BI: https://learn.microsoft.com/en-us/power-bi/guidance/star-schema?WT.mc_id=DP-MVP-5003068

 

I created two measures "" and "".

The first one is counting how many trainings an Emp ID has completed:

completed Trainings = COUNTROWS( 'Completed Trainings' ) 

and the second measure counts the number of trainings an Emp ID has still to complete based on the number of rows in the table "Required Trainings":

open Trainings = 
var currentEmp = SELECTEDVALUE( 'Employees'[Emp ID] )
var completedTrainings = CALCULATE( [completed Trainings] , 'Completed Trainings'[Emp ID] = currentEmp )
return

COUNTROWS( 'Required Trainings' ) - completedTrainings

The model and the measures allow to create a simple visual like the one below:
image.png
Hopefully, this helps to tackle your challenge.

 

Regards,

Tom



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Hello once again Tom. I love what you've added above added solution and I will definitely use it.

 

To further explain (I hope I am making sense). The following is how I want my Matrix visual to look like. I created a merged as new query for the two tables using "Full Outer" (table1 with the list of completed training and table 2 is the one I manually created for the required training).

Please see the following of how I want the visual "Matrix" to look like:

 

EMPLOYEEIntro to PolicySexual HarrassmentEqual OpportunityEthicsTotal Incomplete
Employee 1CompletedblankNot Completedblank3
Employee 2blankblankCompletedblank3
Employee 3CompletedCompletedCompletedblank1
Total Incomplete1213 

 

Thank you once again Tom!

 

All the best,

PRock!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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