E
EricK
I've "inherited" a very complicated spreadsheet at work, which runs quite
slowly. I'm going to try to speed it up a bit. Here are some things I've
thought of so far, but I'm not sure if they're going to work.
1. In some places there are complicated formulae depending on many input
cells. But if one of those cells is zero then the formula will calculate to
zero as well. Would it speed things up to replace "=formula" with
"=if(a1=0,0,formula). In other words, does the IF function calculate both
parts following the condition (in which case this would just slow it down
further) or does it only calculate the relevant part in which case this might
save a lot of calculation time.
2. Imagine the first 1000 rows column A has various numbers which will
always be integers in the range 1-10 and column B has a complex formula which
depends on the figure in the nieghboring cell in column A and also on other
fixed cells in the spreadsheet. Would it speed up the spreadsheet to have a
small ten row table somewhere in the spreadsheet with the complex forumla
worked out for numbers 1-10 and use and replace the formula in column B with
a VLOOKUP? In other words, how quick is a simple VLOOKUP compared to a
complex arithmetic calculation (eg "=a1*(1+$V$3)^(($g$7-$g$4)/365)")?
Are there any other good tips for speeding up spreadsheets?
Thanks,
Eric
slowly. I'm going to try to speed it up a bit. Here are some things I've
thought of so far, but I'm not sure if they're going to work.
1. In some places there are complicated formulae depending on many input
cells. But if one of those cells is zero then the formula will calculate to
zero as well. Would it speed things up to replace "=formula" with
"=if(a1=0,0,formula). In other words, does the IF function calculate both
parts following the condition (in which case this would just slow it down
further) or does it only calculate the relevant part in which case this might
save a lot of calculation time.
2. Imagine the first 1000 rows column A has various numbers which will
always be integers in the range 1-10 and column B has a complex formula which
depends on the figure in the nieghboring cell in column A and also on other
fixed cells in the spreadsheet. Would it speed up the spreadsheet to have a
small ten row table somewhere in the spreadsheet with the complex forumla
worked out for numbers 1-10 and use and replace the formula in column B with
a VLOOKUP? In other words, how quick is a simple VLOOKUP compared to a
complex arithmetic calculation (eg "=a1*(1+$V$3)^(($g$7-$g$4)/365)")?
Are there any other good tips for speeding up spreadsheets?
Thanks,
Eric