Tell me there is a quicker way!!!!

Krucifire

Board Regular
Joined
Nov 8, 2007
Messages
96
Bunnings Trade Card Inbound_Outbound Call Stats (4).xls
ABCDEFGH
4YTDTOTALSWeek8Week9Week10Week11Week12Week13
5Inbound
6TotalweeklyHoursWorked(8am-6pmdaily)
7TradeCardQuery
8GeneralEnquiries40718493430522
9StatusofPriorApp1620506151373136
10CancelledCard2461001104
11RenewalofCard229111181114229
12NewApplication869161318191710
13TTLInboundTradeCardEnquiries54331051411151017581
14OwnerBuilderQuery
15GeneralEnquiries2039222421511
16StatusofPriorApp34912261917810
17CancelledCard47000132
18RenewalofCard2272465715
19NewApplication138347332
20TTLInboundOwnerBuilderEnquiries964265656472640
21EscalatedCalls
22TradeCard163517761
23OwnerBuilderCard41370200
24CreditAccount13010500
25TTLInboundEscalatedCalls2178971461
26OtherCalls
27CreditAccount75931719261514
28BunningsStores689712126138
29AllOther4431680920
30TTLOtherInboundEnquiries1891263731413022
31
32TTLInboundEnquiries8505165243209203137144
33
34InboundCallSummary
35
36TTLTradeCardInboundCalls30831101421221088182
37TTLOwnerBuilderCardCalls3681515141338
38TTLInboundRenewalApplications103802217192924
39TTLInboundApplications542501725222012
40ConversionRatioApps:Calls0.4578383080.40.2484080.3088240.3388430.5833330.4
41
42OutboundCalls
43TradeCard189127392646139
44OwnerBuilderCard2161019101370
45CreditAccount1133461320
46TTLOutboundCallsMade222040624272229
47
48MessageBank
49NumberofMessagesLeft777700000
50MessagesfromBunningsStores/HeadOffice4334061475812185
51TTLMessagesleft28777842149
52Irretrievablenumbers45541069516013594
53NumberofCallsReturned(Outbound)1256891329174123
54278965595510079
55Non-callActivity
56
57TradeCardApplicationsProcessed13213200000
58TradeCardRenewalsandReplacements55092110655623941
59TradeCardApplicationsDeclined1025272724232515
60OwnerBuilderCardApplicationsProcessed36536511701
61OwnerBuilderCardRenewalsandReplacements113815311326841
62OwnerBuilderCardApplicationsDeclined125.23076928.23076961041017
63TTLApplicationsReceived29823120100
Summory



Ok if you look at the formulas above you will see how they are working its basically only the sheet name that is changing.

I have to do this formula for 170 weeks, and i REALLY REALLY REALLY dont want to do it 1 by 1... is there a quicker way to reference this data????
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
You're right. There is a quicker way. There are many quicker ways.

Simplest change from what you have now might be to use INDIRECT. So populate a row with the worksheet names (either as text or generated by formula) say in row 1 and then all the formula with indirect would get the required value. Can you do this?

Using some VBA to do the work would be a better option. Set up a loop to go through the worksheets and if OK just put the values in the summary, that is, get rid of the formulas altogether. Would this be acceptable?

Better again if OK would be to have all the data in a single database-type table instead of 170 worksheets. Can you do this?

What is best for you?
 
Upvote 0
Krucifire,

If I understand you correctly.

Try this:

Excel Workbook
ABCDEFGH
1C thru FP = 170
2Weeks123456
3
4YTD*TOTALSWeek*8Week*9Week*10Week*11Week*12Week*13
5Inbound*Thru Week
6Total*weekly*Hours*Worked*(8am*-*6pm*daily)1
7Trade*Card*Query
8General*Enquiries1818493430522
9Status*of*Prior*App50506151373136
10Cancelled*Card101001104
11Renewal*of*Card*1111181114229
12New*Application16161318191710
13TTL*Inbound*Trade*Card*Enquiries1051051411151017581
14Owner*Builder*Query
15General*Enquiries99222421511
16Status*of*Prior*App1212261917810
17Cancelled*Card0000132
18Renewal*of*Card*22465715
19New*Application3347332
20TTL*Inbound*Owner*Builder*Enquiries26265656472640
Sheet1



As you change the value in cell B6, the SUM formulae in B8, down, will adjust for the weeks you want to sum.

The formula in cell B8 (copied down):
=SUM(OFFSET($C8,,,,$B$6))


Have a great day,
Stan
 
Upvote 0
Krucifire,

As you change the value in cell B6, the SUM formulae in B8, down, will adjust for the weeks you want to sum.

Change B6 from 1 to 5:

Excel Workbook
ABCDEFGH
1C thru FP = 170
2Weeks123456
3
4YTD*TOTALSWeek*8Week*9Week*10Week*11Week*12Week*13
5Inbound*Thru Week
6Total*weekly*Hours*Worked*(8am*-*6pm*daily)5
7Trade*Card*Query
8General*Enquiries13618493430522
9Status*of*Prior*App230506151373136
10Cancelled*Card121001104
11Renewal*of*Card*7611181114229
12New*Application83161318191710
13TTL*Inbound*Trade*Card*Enquiries5371051411151017581
14Owner*Builder*Query
15General*Enquiries819222421511
16Status*of*Prior*App8212261917810
17Cancelled*Card4000132
18Renewal*of*Card*242465715
19New*Application20347332
20TTL*Inbound*Owner*Builder*Enquiries211265656472640
Sheet1



Have a great day,
Stan
 
Upvote 0
The second is probably the only thing i may be capable of doing, if there was some more info given as to how it would be done.

I am capable of created the data base to hold the data how ever, the people recording the data and populating this spread sheet are in no way computer savy, hence why there is 170 odd spread sheets that already contain data as all the know how to do is data entry, getting them to use Excel to do this was a mission in its self. I am fully aware that the way we are tracking this data is the a very inefficient way of doing it. i would like to get it to a point were all this data is captured without them lifting a finger.

Currently i am able to track all the call data so this is able to be automatically populated. given the right set of formulas(not done as yet still entered manually)

Anyway slightly off track, back to where we started i think the second option is probably the best option given our circumstances.
 
Upvote 0
Hey Stan,

i think you have maybe missed the point on this one, or possibly more likely im not understanding correctly what your suggestion is doing.

I looks as thou your formulas are operating off the values in sample i posted, However these Values are obtained off other spreadsheets, will your formulas pull the data off the other sheets that were not shown in the sample data???
 
Upvote 0
EDIT: Got held up making my response so I'm late but, FWIW, here's another option.

Yep. You need to add some helper data in row 3 which will be all the sheet names,
and a helper column in column A with the text J13 in cell A8. Fill down to get the otehr cell refs, then...
D8 is =INDIRECT("'"&D$3&"'!"&$A8)

Copy down and across.

Note: There is no need for array formulas in these cells.

Denis
 
Upvote 0
Thx Denis Stan and Fazza,

Im going to give it a shot atm so bare with me next reply prob be in about 20min, im not 100% sure i fully understand the concept behind what your suggesting but only way to find out is try it out, ill do a couple of test cells and see how we go.

Posting in back soon

- Troy
 
Upvote 0
Yep sorry guys this is beyond my knowledge i have no idea how it picks up the info from the other sheets,

Could you please show me how you would write the cell formulas for cells B8 B9 B10 and C8 C9 C10, i should be right from there.

Thanx
 
Upvote 0
Hi Troy,

To explain my approach...
In row 3 you put all the worksheet names (ie, WEEK 8 WC 05.02.07 in C3, WEEK 9 WC 12.02.07 in D3, etc)
Then, add a helper column to the left of column A -- this now becomes the new Column A.
Start in A8 and enter the text J13. Select the cell and drag down to the last used row, which will give you J9, J10, etc

OK -- now you have sheet names in Row 3, cell addresses in Column A, and the first data cell that you want to pull data to is D8.
The formula I posted does that. INDIRECT effectively lets you build a sheet / cell reference from the values in other cells, and get the value of the cell with that cell reference.

Hope that helps

Denis
 
Upvote 0

Forum statistics

Threads
1,223,227
Messages
6,170,848
Members
452,361
Latest member
d3ad3y3

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