Total Summary of matrix table

jwhralnareez

New Member
Joined
May 27, 2021
Messages
2
Office Version
  1. 2016
Platform
  1. Windows
My problem is how to show the total of columns value x total of row value .
My work sheet is 3 different training titles a,b and c.
staff name
Attending each training will give value 1 .
Let suppose that I have 3 employees
Emp 1 attend training a and b
Emp 2 attend training b and c
Empl 3 attend a , b and c
My need is to show who complete 3 training regardless the title and who did finish 2 of them and also only 1 title as total like in our example will be
1 title 0
2 titles 2
3 titles 1
 

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
Add a calculated column
Total:=
VAR empl=Table1[employee]
RETURN CALCULATE(SUM(Table1[training a])+SUM(Table1[training b])+SUM(Table1[training c]),FILTER(Table1,Table1[employee]=empl))

Add 3 measures like:
count 1:=CALCULATE(COUNTROWS(Table1),FILTER(Table1,Table1[Total]=1))
 
Upvote 0

Forum statistics

Threads
1,223,714
Messages
6,174,048
Members
452,542
Latest member
Bricklin

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top