singh01

New Member
Joined
Feb 7, 2016
Messages
6
Hello,

I am using excel 2003 and have the below sample data (from a main excel sheet with 1000's of rows).


ABCDEF
IDOwnerRegionActionDateTimestamp
1001ShawnAPRClosed12/01/201512:52:06am
1001ShawnAPRopened12/01/201512:43:06am
1001ShawnAPRcreated12/01/201512:42:01am
1002IsabelAMRSClosed12/01/20151:43:44am
1002IsabelAMRSopened12/01/20151:34:30am
1002IsabelAMRScreated12/01/201501:14:47am
1003EricAMRSClosed12/03/20151:43:14AM
1003EricAMRSopened12/03/20151:32:52AM
1003EricAMRScreated12/03/20151:29:59AM
1004KristineEMEAClosed12/04/20154:37:43AM
1004KristineEMEAopened12/04/20152:07:13AM
1004KristineEMEAcreated12/04/20151:58:38AM

<colgroup><col span="4"><col><col></colgroup><tbody>
</tbody>


the data is split by ID (column A) over several rows, the data shows who reviewed the data (col b) and the date and time (col e&f) it was reviewed.

I would simply like to show for example that for how many individual IDs are associated with each region, who owned the data, and the average time between created and closed (col D&F).

I haven't used excel in a long time, and finding it difficult to know where to begin with formulas. I have been able to count the number of IDS excluding the dupes, but not much else! Appreciate your help.
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Hi,
I would suggest using a Pivot Table for 1000's of rows.
Select the range for your data including a header row
Create a Pivot table (I can't recall the command for 2003, but in 2010 its on the ribbon under Insert)

You can experiment with dragging items from the field list into various areas of the pivot table.
for a first gambit I would suggest the following:-
Report Filter = Date & Action
Column Labels = Region
Row Labels = Owner & Time Stamp
Sum Values = Sum of ID

Paul.
 
Upvote 0
This is what I have come up with to start (IF I understand what you want)....
H​
I​
J​
K​
1​
APRAMRSEMEA
2​
1001​
3​
0​
0​
3​
1002​
0​
3​
0​
4​
1003​
0​
3​
0​
5​
1004​
0​
0​
3​
I1=IFERROR(INDEX($C$2:$C$13,MATCH(0,INDEX(COUNTIF($H$1:H1,$C$2:$C$13),0,0),0)),"")
copied across
H2=IFERROR(INDEX($A$2:$A$13,MATCH(0,INDEX(COUNTIF($H$1:H1,$A$2:$A$13),0,0),0)),"")
copied down
These 2 will pull out unique entries for column and row headings

I2=COUNTIFS($A:$A,$H2,$C:$C,I$1)
copied down and across
This will show you where you have matches. You could modify this for some of the other info you wanted
 
Upvote 0

Forum statistics

Threads
1,215,426
Messages
6,124,828
Members
449,190
Latest member
rscraig11

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