Can we assume that part of the simulation is the calculation of formulas in
Excel and turning off calculation would not be acceptable.
then
Sub Simulation()
With Worksheets.Summary("Range("B2:B20,D2:D20")
.Replace What:="=", _
Replacement:="ZZ=", _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
MatchCase:=False
End With
' code that does the simulation and writes the table
With Worksheets.Summary("Range("B2:B20,D2:D20")
.Replace What:="ZZ=", _
Replacement:="=", _
LookAt:=xlPart, _
SearchOrder:=xlByRows, _
MatchCase:=False
End With
End Sub
This converts your formulas to text strings so they don't calculate, then
changes them back to formulas. Modify the range to match the cells you want
suppressed.

Signature
Regards,
Tom Ogilvy
> > I have a fairly large Excel spreadsheet with a small VBA program that
> > conducts a simulation using the spreadsheets as a calculation engine. A
[quoted text clipped - 21 lines]
>
> James