Large spreadsheet / very slow calculation / faster computer - QUESTION

ExcelKnut

Board Regular
Joined
Apr 18, 2013
Messages
144
I'm working on a spreadsheet (Excel 2010) with 100,000 rows and over 50 columns. About 15 of those columns have formulas. It's slower than a dead yak. Is it "normal" that it takes over ten minutes to calculate? Would a better/faster computer help? My current laptop has the specs indicated below.

Processor: Intel(R) Core(TM) i5-2520M CPU @ 2.50 GHz 2.50 GHz
RAM: 4.00 GB
System Type: 64-bit OS

Any advice, suggestions etc. is greatly appreciated.

Jeff
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
What are the formulas?
 
Upvote 0
Depends on the formula types. Array formulas will always take longest to calculate, but even 100k rows will take a little bit, x15 columns.
If you have any "calculate once" formulas copy and paste values, or have the formula performed in a macro that writes the result.
Hopefully you are using manual calculations....
 
Upvote 0
See some of the formulas below.

=IF(ROW()=B10,"Total","")
=MAX(ROW($C$3:$C$100001)*($C$3:$C$100001=C7))
=IF(A8="Total",IFERROR(Q8-J8,Q8),"")
=IF($A8<>"Total","",IFERROR(Q8+0,"no adj"))
=IF(LEN(BJ7)=0,"",IF(BJ7=2,ROUND(BA7-AZ7,2),ROUND(OFFSET(AY7,0,BJ7)-BA7,2)))
 
Upvote 0
What do you use this for:
=MAX(ROW($C$3:$C$100001)*($C$3:$C$100001=C7))

Also, you should avoid OFFSET as it is volatile and will recalculate whenever your workbook does, even if none of its inputs have actually changed.
 
Upvote 0
I use that formula (MAX...) to get the row number of the last occurrence of the values in column C. Thanks for the info about OFFSET. I'm sorry to hear that about OFFSET--I've found it very useful so I use it a lot.
 
Upvote 0
I use that formula (MAX...) to get the row number of the last occurrence of the values in column C.

I know that - I mean what do you use that information for. ;)
 
Upvote 0
Sorry about that :oops:.

I have a list of claim numbers (Column C) and the last one has the total amount paid on that claim in Column K in the row of the last occurrence of the claim number. And the number of times the claim number is listed is not always the same.
 
Upvote 0
Can you sort the data on claim number?
 
Upvote 0

Forum statistics

Threads
1,215,720
Messages
6,126,443
Members
449,314
Latest member
MrSabo83

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