View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Darrin Henshaw Darrin Henshaw is offline
external usenet poster
 
Posts: 38
Default Recalculate sheet & Positioning text boxes

Note sure about the second question, but the for your first question,
use the Worksheet_Change Event. Something like

Private Sub Worksheet_Change(ByVal Target as Range)
Application.Calculate
End Sub

Or even just get rid of the Application.


*** Sent via Developersdex http://www.developersdex.com ***