I've got a couple of columns similar to this:
And a macro which does something like:
So far, so simple and dandy. The problem comes when the number of "Things" being Calculated grows large, say more than fifty. The macro becomes Veeeerrrrrryy Sslooooowww! Obviously, this is because the Calculate has to ripple down through all the "Things" in the list, as well as any other formula cells on the sheet.
Is there some alternate syntax or method I could, say, select all the Thing Formulas and kinda "Flash" calculate them, like a parallel register when strobed?
ANy ideas gratefully received![[thumbsup2] [thumbsup2] [thumbsup2]](/data/assets/smilies/thumbsup2.gif)
Chris
Beer is God's way of telling us He loves us and wants us to be happy - Benjamin Franklin
Code:
[b]Name Formula[/b]
Thing1 =IF(Y IN Month,1,0)
Thing2 =IF(Y IN Month,1,0)
Thing3 =IF(Y IN Month,1,0)
Thing4 =IF(Y IN Month,1,0)
.....etc
Thing15 =IF(Y IN Month,1,0)
And a macro which does something like:
Code:
For N = 1 to Z
Calculate
[green]'Do things with the results[/green]
Next N
So far, so simple and dandy. The problem comes when the number of "Things" being Calculated grows large, say more than fifty. The macro becomes Veeeerrrrrryy Sslooooowww! Obviously, this is because the Calculate has to ripple down through all the "Things" in the list, as well as any other formula cells on the sheet.
Is there some alternate syntax or method I could, say, select all the Thing Formulas and kinda "Flash" calculate them, like a parallel register when strobed?
ANy ideas gratefully received
![[thumbsup2] [thumbsup2] [thumbsup2]](/data/assets/smilies/thumbsup2.gif)
Chris
Beer is God's way of telling us He loves us and wants us to be happy - Benjamin Franklin