Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 23  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. How do I refresh a sheets view in Excel? [closed]
  2. ActiveSheet.EnableCalculation = False  
  3. ActiveSheet.EnableCalculation = True
  4.        
  5. 'recalculate all open workbooks
  6. Application.Calculate
  7.  
  8. 'recalculate a specific worksheet
  9. Worksheet(1).Calculate
  10.  
  11. ' recalculate a specific range
  12. Worksheet(1).Columns(1).Calculate
  13.        
  14. Application.CalculateFull
  15.        
  16. Application.CalculateFullRebuild