Thread
:
Convert Formula Result to Static Text
View Single Post
08-16-2011, 04:35 AM
Catalin.B
Windows Vista
Office 2007
Expert
Join Date: May 2011
Location: Iaşi, Romānia
Posts: 386
replace sub auto open with this:
Sub auto_open()
Dim WS_Count As Integer
Dim i As Integer
WS_Count = ActiveWorkbook.Worksheets.Count
For i = 1 To WS_Count
ThisWorkbook.Worksheets(i).OnEntry = "CopyFormulaResults"
Next
End Sub
Catalin.B
View Public Profile
Find all posts by Catalin.B