Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
key | User | Manager | BI | CD | Tool | PO | DB | Trarining Complete |
1 | Alex | Shane | Y | Y | Y | Y | Y | Y |
2 | Angela | Shane | Y | Y | Y | Y | Y | Y |
3 | Andrew | Shane | Y | Y | Y | Y | N | N |
4 | Jamie | Chris | Y | Y | Y | N | Y | N |
5 | Joseph | Chris | N | N | N | N | N | N |
6 | Smith | Katherine | Y - PASS | Y | Y - PASS | Y | Y | Y |
7 | Bravo | Katherine | Y | Y | Y | Y | Y | Y |
8 | Dean | Lee | Y | Y | Y | Y | Y | Y |
9 | John | Lee | Y | Y | Y | Y | Y | Y |
10 | William | Lee | Y | Y | Y | Y | N | N |
Training Complete Excel formula= =IF(COUNTIF(D2:H2,"")>0,"N",IF(COUNTIF(D2:H2,"N")>0,"N","Y")) for all the rows in Training Complete.
Problem: I like to show in PowerBI the status of the training completion by user name, report should show completion status of training complete and overall % complete. I like to filter on the Manager
Thanks in advance team.
Solved! Go to Solution.
Hi,
You could create the calculated columns as below :
- for Training Status :
- For Training Passing Ratio :
Thanks for Kudos,
Please mark it as solution if it helps
Thanks,
like to understand a bit more about the UPPER(left(trim(sheet217[BI], as BI I can understand it the the table but the rest of the query..
SHEET217 ? Is a bit confusing
Hi @DavidGM ,
For this, I would unpivot the data first before making any calculations. Once unpivoted, I can then count the number of N per user and then use the count in calculating for the percentage of completion.
Here are the measures I'd use:
Count of Incomplete =
CALCULATE (
COUNTROWS ( 'Table' ),
FILTER ( ALLEXCEPT ( 'Table', 'Table'[EY #] ), 'Table'[Value] = "N" )
)
Progress % =
1 - DIVIDE ( [Count of Incomplete], 6 )
Training Status =
IF ( [Count of Incomplete] = BLANK (), "Y", "N" )
Sample result:
Please see attached pbix for the details.
Proud to be a Super User!
It worked well for me! Thanks
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
87 | |
87 | |
67 | |
49 |
User | Count |
---|---|
135 | |
112 | |
100 | |
68 | |
67 |