Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 13
Default Error 461-Method or data member not found

I've tried to tweek this code from Ron de Bruin www.rondebruin.com but the
code stops at the .Find after Set rngFound =

Can anyone help me understand why, and how to fix it? Thanks in advance!

Sub Example()
Dim MyPath As String
Dim FilesInPath As String
Dim MyFiles() As String, Fnum As Long
Dim mybook As Workbook
Dim CalcMode As Long
Dim sh As Worksheet
Dim rngFound As Range
Dim strFirstAddress As String
Dim strFind As String
Dim strReplace As String
Dim wsInput As Worksheet
Dim ErrorYes As Boolean
Dim floc As Range

Set wsInput = Worksheets("Input")
strFind = wsInput.Range("B8").Text
strReplace = wsInput.Range("B9").Text

floc = wsInput.Range("B5")

'Fill in the path\folder where the files are
MyPath = "F:\EHP IBNR\Trend Automation\Testing\Trend Testing\" & floc

'Add a slash at the end if the user forget it
If Right(MyPath, 1) < "\" Then
MyPath = MyPath & "\"
End If

'If there are no Excel files in the folder exit the sub
FilesInPath = Dir(MyPath & "*Variances*.xl*")
If FilesInPath = "" Then
MsgBox "No files found"
Exit Sub
End If

'Fill the array(myFiles)with the list of Excel files in the folder
Fnum = 0
Do While FilesInPath < ""
Fnum = Fnum + 1
ReDim Preserve MyFiles(1 To Fnum)
MyFiles(Fnum) = FilesInPath
FilesInPath = Dir()
Loop

'Change ScreenUpdating, Calculation and EnableEvents
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
End With

'Loop through all files in the array(myFiles)
If Fnum 0 Then
For Fnum = LBound(MyFiles) To UBound(MyFiles)
Set mybook = Nothing
On Error Resume Next
Set mybook = Workbooks.Open(MyPath & MyFiles(Fnum))
On Error GoTo 0

If Not mybook Is Nothing Then


'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Find(What:=strFind,
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If


End With
Else
ErrorYes = True
End If
Next sh



If Err.Number 0 Then
ErrorYes = True
Err.Clear
'Close mybook without saving
mybook.Close savechanges:=False
Else
'Save and close mybook
mybook.Close savechanges:=True
End If
On Error GoTo 0
Else
'Not possible to open the workbook
ErrorYes = True
End If

Next Fnum
End If

If ErrorYes = True Then
MsgBox "There are problems in one or more files, possible problem:" _
& vbNewLine & "protected workbook/sheet or a sheet/range that
not exist"
End If

'Restore ScreenUpdating, Calculation and EnableEvents
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = CalcMode
End With
End Sub



  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,939
Default Error 461-Method or data member not found

You are in a with clause for the sheet sh so what you have for your find is
essentially

Set rngFound = sh.Find(What:=strFind, ...

The problem is sheets do not have a find method. Ranges do. Since I assume
you are searching the entire sheet you could do this

Set rngFound = .Cells.Find(What:=strFind, ...
--
HTH...

Jim Thomlinson


"shorticake" wrote:

I've tried to tweek this code from Ron de Bruin www.rondebruin.com but the
code stops at the .Find after Set rngFound =

Can anyone help me understand why, and how to fix it? Thanks in advance!

Sub Example()
Dim MyPath As String
Dim FilesInPath As String
Dim MyFiles() As String, Fnum As Long
Dim mybook As Workbook
Dim CalcMode As Long
Dim sh As Worksheet
Dim rngFound As Range
Dim strFirstAddress As String
Dim strFind As String
Dim strReplace As String
Dim wsInput As Worksheet
Dim ErrorYes As Boolean
Dim floc As Range

Set wsInput = Worksheets("Input")
strFind = wsInput.Range("B8").Text
strReplace = wsInput.Range("B9").Text

floc = wsInput.Range("B5")

'Fill in the path\folder where the files are
MyPath = "F:\EHP IBNR\Trend Automation\Testing\Trend Testing\" & floc

'Add a slash at the end if the user forget it
If Right(MyPath, 1) < "\" Then
MyPath = MyPath & "\"
End If

'If there are no Excel files in the folder exit the sub
FilesInPath = Dir(MyPath & "*Variances*.xl*")
If FilesInPath = "" Then
MsgBox "No files found"
Exit Sub
End If

'Fill the array(myFiles)with the list of Excel files in the folder
Fnum = 0
Do While FilesInPath < ""
Fnum = Fnum + 1
ReDim Preserve MyFiles(1 To Fnum)
MyFiles(Fnum) = FilesInPath
FilesInPath = Dir()
Loop

'Change ScreenUpdating, Calculation and EnableEvents
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
End With

'Loop through all files in the array(myFiles)
If Fnum 0 Then
For Fnum = LBound(MyFiles) To UBound(MyFiles)
Set mybook = Nothing
On Error Resume Next
Set mybook = Workbooks.Open(MyPath & MyFiles(Fnum))
On Error GoTo 0

If Not mybook Is Nothing Then


'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Find(What:=strFind,
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If


End With
Else
ErrorYes = True
End If
Next sh



If Err.Number 0 Then
ErrorYes = True
Err.Clear
'Close mybook without saving
mybook.Close savechanges:=False
Else
'Save and close mybook
mybook.Close savechanges:=True
End If
On Error GoTo 0
Else
'Not possible to open the workbook
ErrorYes = True
End If

Next Fnum
End If

If ErrorYes = True Then
MsgBox "There are problems in one or more files, possible problem:" _
& vbNewLine & "protected workbook/sheet or a sheet/range that
not exist"
End If

'Restore ScreenUpdating, Calculation and EnableEvents
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = CalcMode
End With
End Sub



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,939
Default Error 461-Method or data member not found

On further examination you are going to have more problems. You .Replace and
..FindNext also need to be fixed something like this... (note that I have not
examined your code to determine what it is supposed to do so what I post
here may not do exactly what you want it to do)

'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Cells.Find(What:=strFind, _
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Cells.Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .Cells.FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If

End With
Else
ErrorYes = True
End If
Next sh

--
HTH...

Jim Thomlinson


"Jim Thomlinson" wrote:

You are in a with clause for the sheet sh so what you have for your find is
essentially

Set rngFound = sh.Find(What:=strFind, ...

The problem is sheets do not have a find method. Ranges do. Since I assume
you are searching the entire sheet you could do this

Set rngFound = .Cells.Find(What:=strFind, ...
--
HTH...

Jim Thomlinson


"shorticake" wrote:

I've tried to tweek this code from Ron de Bruin www.rondebruin.com but the
code stops at the .Find after Set rngFound =

Can anyone help me understand why, and how to fix it? Thanks in advance!

Sub Example()
Dim MyPath As String
Dim FilesInPath As String
Dim MyFiles() As String, Fnum As Long
Dim mybook As Workbook
Dim CalcMode As Long
Dim sh As Worksheet
Dim rngFound As Range
Dim strFirstAddress As String
Dim strFind As String
Dim strReplace As String
Dim wsInput As Worksheet
Dim ErrorYes As Boolean
Dim floc As Range

Set wsInput = Worksheets("Input")
strFind = wsInput.Range("B8").Text
strReplace = wsInput.Range("B9").Text

floc = wsInput.Range("B5")

'Fill in the path\folder where the files are
MyPath = "F:\EHP IBNR\Trend Automation\Testing\Trend Testing\" & floc

'Add a slash at the end if the user forget it
If Right(MyPath, 1) < "\" Then
MyPath = MyPath & "\"
End If

'If there are no Excel files in the folder exit the sub
FilesInPath = Dir(MyPath & "*Variances*.xl*")
If FilesInPath = "" Then
MsgBox "No files found"
Exit Sub
End If

'Fill the array(myFiles)with the list of Excel files in the folder
Fnum = 0
Do While FilesInPath < ""
Fnum = Fnum + 1
ReDim Preserve MyFiles(1 To Fnum)
MyFiles(Fnum) = FilesInPath
FilesInPath = Dir()
Loop

'Change ScreenUpdating, Calculation and EnableEvents
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
End With

'Loop through all files in the array(myFiles)
If Fnum 0 Then
For Fnum = LBound(MyFiles) To UBound(MyFiles)
Set mybook = Nothing
On Error Resume Next
Set mybook = Workbooks.Open(MyPath & MyFiles(Fnum))
On Error GoTo 0

If Not mybook Is Nothing Then


'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Find(What:=strFind,
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If


End With
Else
ErrorYes = True
End If
Next sh



If Err.Number 0 Then
ErrorYes = True
Err.Clear
'Close mybook without saving
mybook.Close savechanges:=False
Else
'Save and close mybook
mybook.Close savechanges:=True
End If
On Error GoTo 0
Else
'Not possible to open the workbook
ErrorYes = True
End If

Next Fnum
End If

If ErrorYes = True Then
MsgBox "There are problems in one or more files, possible problem:" _
& vbNewLine & "protected workbook/sheet or a sheet/range that
not exist"
End If

'Restore ScreenUpdating, Calculation and EnableEvents
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = CalcMode
End With
End Sub



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 13
Default Error 461-Method or data member not found

Thanks soooo much!! That part works great, but now the code stops at Loop
Until rngFound.Address = strFirstAddress and I get an "Error 91 - Object
variable or With block variable not set."


"Jim Thomlinson" wrote:

On further examination you are going to have more problems. You .Replace and
.FindNext also need to be fixed something like this... (note that I have not
examined your code to determine what it is supposed to do so what I post
here may not do exactly what you want it to do)

'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Cells.Find(What:=strFind, _
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Cells.Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .Cells.FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If

End With
Else
ErrorYes = True
End If
Next sh

--
HTH...

Jim Thomlinson


"Jim Thomlinson" wrote:

You are in a with clause for the sheet sh so what you have for your find is
essentially

Set rngFound = sh.Find(What:=strFind, ...

The problem is sheets do not have a find method. Ranges do. Since I assume
you are searching the entire sheet you could do this

Set rngFound = .Cells.Find(What:=strFind, ...
--
HTH...

Jim Thomlinson


"shorticake" wrote:

I've tried to tweek this code from Ron de Bruin www.rondebruin.com but the
code stops at the .Find after Set rngFound =

Can anyone help me understand why, and how to fix it? Thanks in advance!

Sub Example()
Dim MyPath As String
Dim FilesInPath As String
Dim MyFiles() As String, Fnum As Long
Dim mybook As Workbook
Dim CalcMode As Long
Dim sh As Worksheet
Dim rngFound As Range
Dim strFirstAddress As String
Dim strFind As String
Dim strReplace As String
Dim wsInput As Worksheet
Dim ErrorYes As Boolean
Dim floc As Range

Set wsInput = Worksheets("Input")
strFind = wsInput.Range("B8").Text
strReplace = wsInput.Range("B9").Text

floc = wsInput.Range("B5")

'Fill in the path\folder where the files are
MyPath = "F:\EHP IBNR\Trend Automation\Testing\Trend Testing\" & floc

'Add a slash at the end if the user forget it
If Right(MyPath, 1) < "\" Then
MyPath = MyPath & "\"
End If

'If there are no Excel files in the folder exit the sub
FilesInPath = Dir(MyPath & "*Variances*.xl*")
If FilesInPath = "" Then
MsgBox "No files found"
Exit Sub
End If

'Fill the array(myFiles)with the list of Excel files in the folder
Fnum = 0
Do While FilesInPath < ""
Fnum = Fnum + 1
ReDim Preserve MyFiles(1 To Fnum)
MyFiles(Fnum) = FilesInPath
FilesInPath = Dir()
Loop

'Change ScreenUpdating, Calculation and EnableEvents
With Application
CalcMode = .Calculation
.Calculation = xlCalculationManual
.ScreenUpdating = False
.EnableEvents = False
End With

'Loop through all files in the array(myFiles)
If Fnum 0 Then
For Fnum = LBound(MyFiles) To UBound(MyFiles)
Set mybook = Nothing
On Error Resume Next
Set mybook = Workbooks.Open(MyPath & MyFiles(Fnum))
On Error GoTo 0

If Not mybook Is Nothing Then


'Change cell value(s) in ALL worksheets in mybook
On Error Resume Next
For Each sh In mybook.Worksheets
If sh.ProtectContents = False Then
With sh

wsInput.Activate

Set rngFound = .Find(What:=strFind,
LookIn:=xlFormulas, _
LookAt:=xlPart)

If Not rngFound Is Nothing Then
strFirstAddress = rngFound.Address

Do

rngFound = .Replace(What:=strFind,
Replacement:=strReplace, _
LookAt:=xlPart, SearchOrder:=xlByRows,
MatchCase:=False, _
ReplaceFormat:=True)

sh.Activate

Set rngFound = .FindNext(rngFound)

Loop Until rngFound.Address = strFirstAddress

End If


End With
Else
ErrorYes = True
End If
Next sh



If Err.Number 0 Then
ErrorYes = True
Err.Clear
'Close mybook without saving
mybook.Close savechanges:=False
Else
'Save and close mybook
mybook.Close savechanges:=True
End If
On Error GoTo 0
Else
'Not possible to open the workbook
ErrorYes = True
End If

Next Fnum
End If

If ErrorYes = True Then
MsgBox "There are problems in one or more files, possible problem:" _
& vbNewLine & "protected workbook/sheet or a sheet/range that
not exist"
End If

'Restore ScreenUpdating, Calculation and EnableEvents
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = CalcMode
End With
End Sub



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Compile error: Method or data member not found Brian Day Excel Worksheet Functions 0 July 22nd 07 03:20 AM
Compile error: Method or data member not found OliverB Excel Programming 2 April 13th 07 10:48 AM
Compile Error Method or data member not found ExcelMonkey Excel Programming 1 October 4th 05 10:41 PM
Compile Error: Method or data member not found Nick S[_3_] Excel Programming 2 November 16th 04 02:38 PM
Compile Error: Method or data member not found Nick S[_2_] Excel Programming 1 November 16th 04 11:41 AM


All times are GMT +1. The time now is 04:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"