View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
G Franc G Franc is offline
external usenet poster
 
Posts: 2
Default Inability to calculate a range in Excel versions above 2000

The macro below fails whenever the calculation tab in excel version 2002 and
newer are set to manual with interations checked. The MS EXCEL work around is
to set calculations to automatic or to uncheck iterations. Neither option is
suitable for my application.

Are others having a similar problem? My only solution to date is to continue
running EXCEL 2000.



Sub calc()
Dim mess
On Error GoTo er
Selection.Calculate
GoTo done
er:
mess = Error(Err)
MsgBox (mess)
done:
End Sub