ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Is it possible to have to many formulas in excel, some not working (https://www.excelbanter.com/excel-programming/343427-possible-have-many-formulas-excel-some-not-working.html)

Wade

Is it possible to have to many formulas in excel, some not working
 
I have a spreadsheet with about 40 sheets, They all have formulas, while
entering some formulas I had a pop up (something to the effect of not enough
memory). Now some of the formulas won't work, when they have before. I have
everything to set up to calculate formulas automaticly & I tried
alt-Shift-Crtl-F9 & that doesn't work either... What can I do so all the
formulas work?

Leith Ross[_71_]

Is it possible to have to many formulas in excel, some not working
 

Hello Wade,

Reduce the size of the workbook by placing the worksheets into other
workbooks. You can then link the workbooks together if you need to.

Leith Ross


--
Leith Ross
------------------------------------------------------------------------
Leith Ross's Profile: http://www.excelforum.com/member.php...o&userid=18465
View this thread: http://www.excelforum.com/showthread...hreadid=478142


Patrick Molloy[_2_]

Is it possible to have to many formulas in excel, some not working
 
for our spreadsheets, we use a calculation tree. Basically, simply a table of
range names that need to be calculated in a specific order. Then we simply
run each range in turn...something along these lines...

the range containing the list of ranges to calculate is named 'calc.table'

Option Explicit
Sub test()
CalcTree
End Sub


Sub CalcTree()
Dim SourceTable As Range
Dim TargetRange As Range
For Each TargetRange In NamedRange("calc.table")
NamedRange(TargetRange.Value).Calculate
Next
End Sub
Function NamedRange(sRangeName As String) As Range
On Error Resume Next
Set NamedRange = Names.Item(sRangeName).RefersToRange
On Error GoTo 0
End Function

"Wade" wrote:

I have a spreadsheet with about 40 sheets, They all have formulas, while
entering some formulas I had a pop up (something to the effect of not enough
memory). Now some of the formulas won't work, when they have before. I have
everything to set up to calculate formulas automaticly & I tried
alt-Shift-Crtl-F9 & that doesn't work either... What can I do so all the
formulas work?



All times are GMT +1. The time now is 03:38 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com