View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Mark Bigelow[_2_] Mark Bigelow[_2_] is offline
external usenet poster
 
Posts: 2
Default Single Sheet - Calculate Manually

Here you go! Just change the variable strSheetName to the name of the
sheet you mentioned.

Sub CalculateAllExcept()

strSheetName = "Sheet I don't want calculated"

For Each sht In Sheets
If sht.Name < strSheetName Then
sht.Calculate
End If
Next sht

End Sub

---
Mark Bigelow

http://hm.imperialoiltx.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!