Convert Calendar to List of Occurrences

Shawnaby

New Member
Joined
Oct 23, 2016
Messages
4
I received an old attendance tracker spreadsheet, in which occurrences were entered in as calendar entries. On the left side is employee names, across the top are days 1-31, and in the intersections codes like T, for tardy, U, for unexcused absence etc. are entered. I have a years worth of these spreadsheets for 40 employees that I need to turn into a list of names and occurrences for processing. I am stumped on the easiest way to do this. Any suggestions?
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
So you have 12 spreadsheets, one for each month?

If that's the case, I would suggest you copy and paste them into a single workbook. You may want to create a separate column to differentiate the months. Then just use SUMIF. Here is an example:

Excel Workbook
ABCDEFGHIJKLMNOPQRSTUVWXYZAAABACADAEAFAGAHAI
1NameMonth12345678910111213141516171819202122232425262728293031Total TTotal U
2John SmithJan*T***U****T***UU*********U*T***34
3Jane DoeJan***U**T*T**********U*****T*****32
4Robert SwiftJan***************U****U*****U****03
5John SmithFeb***************T**********T*U*U22
6Jane DoeFebU*******UU*T****U***U*TU*******26
7Robert SwiftFeb****T*T****U*****T*****U*******32
8***********************************
9Totals**********************************
10John Smith********************************56
11Jane Doe********************************58
12Robert Swift********************************35
Sheet1
 
Upvote 0
That is good, but not exactly what I am looking for. I would prefer to have a list of occurrences such as:

John Smith 01/02 T
John Smith 01/06 U
.
.
Robert Swift 02/24 U
 
Upvote 0
you can merge multiply value into a string with &.
for example =rc1&" "&rc2&" "&COUNTIF(rc3:$rc33, "T")
 
Upvote 0
Looking for something which will return a date. I posted a new question which better describes what I am looking for.
 
Upvote 0

Forum statistics

Threads
1,214,908
Messages
6,122,187
Members
449,072
Latest member
DW Draft

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