telephone list: visualization of calls

HarryBow

New Member
Joined
Dec 18, 2015
Messages
2
Hello,

I have an Excel-worksheet with data of people whom I called on their telephone (for a non-profit survey, members/supporters of a charity organization)

Simplified, it looks like this:

Person ID (person that I called)Call DateCommentnumber of calls
20050022014-10-0110:20 AM: answering machine4
20050022014-10-034:30 PM: answering machine4
20050022014-10-066:30 PM: busy signal4
20050022014-10-096:15 PM: contacted person4
20050032014-10-0110:30 AM: answering machine1
20050042014-10-015:30 PM: busy signal2
20050042014-10-037:00 PM: contacted person2

<tbody>
</tbody>
etcetera

It will contain much more datasets for other persons. The Colum "number of calls" will always only show the final number of calls, not the number of calls at a specific date in time.

What I'm trying to do here: I would like to make a compilation of data / a visualization, that compiles the answers to the following questions:


  • How often did I call each person (data is already there, just needs to be visualized in form of a diagram)?


  • For every person: AM vs PM ratio of calls. The same for the whole set of data.

What am I trying to find out? I want to know (for each person and for the whole dataset) whether we called predominantly in the mornings or in the afternoon, So that I know whether we should try to call again at AM or PM. If I for instance called predominantly in the mornings and haven't reached too much persons yet, I could try to call more in the evenings.

Thanks for now. Oh, and I'm using Excel 2010 Standard.





<tbody>
</tbody>
 
Last edited:

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Here's one way:

With your data ADD two formula Columns E & F.. like so


Excel 2012
ABCDEF
1Person ID (person that I called)Call DateCommentnumber of callsCalls Per PersonCall Time
2200500210/1/201410:20 AM: answering machine44AM
3200500210/3/20144:30 PM: answering machine40PM
4200500210/6/20146:30 PM: busy signal40PM
5200500210/9/20146:15 PM: contacted person40PM
6200500310/1/201410:30 AM: answering machine11AM
7200500410/1/20145:30 PM: busy signal22PM
8200500410/3/20147:00 PM: contacted person20PM
Sheet1
Cell Formulas
RangeFormula
E2=IF(AND(A3<>A2,A2<>A1),1,IF(AND(A3=A2,A2<>A1),D2,))
F2=IFERROR(IF(FIND("AM",C2)>0,"AM","PM"),"PM")


Then Create Pivot table (Sheet2) as follows...


Excel 2012
ABCDE
1
2
3Sum of Calls Per PersonColumn Labels
4Row LabelsAMPMGrand Total
52005002404
6200500311
7200500422
8Grand Total527
9
10
11
12
13
14Pivot Table Fields Used as follows (to get the Above)
15
16RowsPerson ID
17ColumnsCall Time
18ValuesSum of - Calls Per Person
Sheet2
 
Upvote 0
I loathe cold calls, though you seem to have a tight dedicated list
 
Upvote 0
Here's one way...

Thanks.

Regarding Sheet 1:

the first formula (that gives me the calls per person): does this formula automatically include all rows that belong to a specific PERSON ID and can I do this somehow automatically for all PERSON IDs I have?

the second formula (that gives me the call time): my initial explaination was actually a bit wrong. The format of the time is actually Continental European style:


ABCDE
1Person ID (person that I called)Call DateCommentnumber of callsCall Time
2200500210/1/201410:20 answering machine
44
3200500210/3/201416:30 answering machine
40
4200500210/6/201418:30 busy signal
40
5200500210/9/201418:15 contacted person
40
6200500310/1/201410:30 answering machine
11
7200500410/1/201417:30 busy signal
22
8200500410/3/201419:00 contacted person
20

<colgroup><col style="width: 25pxpx"><col><col><col><col><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1
So, I would need a formula that can "see" whether a given time is prior to 12:00 noon time or post noon time. The output can be AM / PM.

Thanks for your help so far. I only worked with formulas in Excel very rarely and in ancient times. I want to get into it again, but I'm not really sure where to start. So, this little non-profit project is a good way for me to practice Excel's advanced functions.



I loathe cold calls, though you seem to have a tight dedicated list

True, but we are not trying to disturb or interrupt anyone. The list is actually not that small, we have quiet a number of members / supporters. The feedback so far was actually good, almost no complaints.
 
Upvote 0
Copy Down the two formulas I gave you *** far as you have data in Columns A:D.

Don't have any more time today, must run......

Good luck -- Jim
 
Upvote 0

Forum statistics

Threads
1,215,978
Messages
6,128,070
Members
449,418
Latest member
arm56

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