View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Jbm Jbm is offline
external usenet poster
 
Posts: 28
Default Convert to Values

Ananth,
You should probably save first, but try this:

Sub Tester()
Dim sht As Worksheet
For Each sht In ActiveWorkbook.Sheets
With sht.Range("A2:AG4000")
..Copy
..PasteSpecial Paste:=xlPasteValues
Application.CutCopyMode = False
Application.ScreenUpdating = True
End With
Next sht
End Sub


"Ananth" wrote:

I have a workbook that has 40 tabs. In each of the tabs there are formulas
referenced to a tab named €śDBASE€ť , which is one among the 40 tabs.

Is it possible to convert only those €śDBASE€ť reference formulas wherever
referenced in all the 39 tabs into values by a single action using a macro.
All the tabs have data from Range A2 to AG4000