Excel for summarizing/arranging data

naar

New Member
Joined
Jan 28, 2013
Messages
11
hi, i have been an assignment by my teacher to arrange data in excel. the data is about some type of customer database which contains ID of Customer, Outgoing calls, Incoming calls and sms, each customer ID Making several calls

the data should be arranged in such format
Customer ID Incoming Calls Outgoing Calls SMS Total
32323 2 4 2 8

Please let me what formula should i apply so that Excel automatically calculates, incoming/outgoing/sms per customer id from the large database...

Any help would be appreciated

Regards

A. Kumar
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
use SUMPRODUCT rather than COUNTIFS

IN B20
=SUMPRODUCT(($A$2:$A$17=$A20)*($B$2:$B$17="INCOMING"))

IN C20
=SUMPRODUCT(($A$2:$A$17=$A20)*($B$2:$B$17="OUTGOING"))

IN A20
=INDEX($A$2:$A$20, MATCH(0, COUNTIF($B$1:B1, $A$2:$A$20), 0)) (THIS IS AN ARRAY FORMULA SO FIRST PRESS AND HOLD CTRL SHIFT PRESS ENTER
 
Last edited:
Upvote 0
Kamran Mumtaz Thank you so much, this solves my problem. one question more COUNTIFS formula excel 2003 me use ni hota? online koi aisi book ya guide reference jis me functions or unka use diya hua ho plz?
 
Upvote 0
Kamran Mumtaz Thank you so much, this solves my problem. one question more COUNTIFS formula excel 2003 me use ni hota? online koi aisi book ya guide reference jis me functions or unka use diya hua ho plz?

Hhmmm... Could you please post your question then I'll try to find out the way... may be the SUMPRODUCT function can do this...
 
Upvote 0
Upvote 0
How to filter / skip certain ids starting with certain numbers for example what if i want to skip all ids starting with 92 the number might be 923338884756... Please!
Thanks for all your help and prompt response


imagine there is a list of numbers


92303474564
92347656864
92364585684
93378437666
91278468656
91376486578
917847628765
92303474564
92347656864
92364585684
93378437666
91278468656
91376486578
917847628765
44565667575
54787687687
7656756656




While getting Unique IDs as posted in the form you quoted an array function. but while getting unique ids it is required that unique id list doesnt include homecountry numbers in this example all numbers starting with "92"
 
Upvote 0

Forum statistics

Threads
1,216,109
Messages
6,128,883
Members
449,477
Latest member
panjongshing

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