I'm getting the "Compile Error: Method or data member not found" error on the following line of code on my co-workers computer but I have no issues on my computer. We are running the same version of Excel (2016 on a MAC), any idea what the issue could be?
Error on
With the ".Close" highlighted.
Pretty much everything I check between the two machines is exactly the same. Any guidance is greatly appreciated. Also I apologize in advance of the sloppiness of the code, I'm a total newb.
The full code is below
Error on
Rich (BB code):
mybook.Close savechanges:=False
With the ".Close" highlighted.
Pretty much everything I check between the two machines is exactly the same. Any guidance is greatly appreciated. Also I apologize in advance of the sloppiness of the code, I'm a total newb.
The full code is below
Code:
Sub Update_Price()
Dim MyPath As String, FilesInPath As String
Dim MyFiles() As String, Fnum As Long
Dim FileName As String
Dim mybook As Workbook
Dim CalcMode As Long
Dim sh As Worksheet
Dim ErrorYes As Boolean
'Fill in the path\folder where the files are
MyPath = MacScript("return POSIX path of (path to desktop folder) as string")
MyPath = Replace(MyPath, "/Desktop", "") & _
"Library/Group Containers/UBF8T346G9.Office/Master Key/Update/"
'If there are no Excel files in the folder exit the sub
FilesInPath = Dir(MyPath)
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
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))
If Not mybook Is Nothing Then
'Change cell value(s) in one worksheet in mybook
With mybook.Worksheets("Project")
.Range("G25") = Format(Now(), "mm-dd-yy")
.Range("H25") = Format(Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C27").Value, "mm-dd-yy")
.Range("I25") = Format(Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("D27").Value, "mm-dd-yy")
'.Range("G19") = DateAdd("m", 3, Now())
'.Range("E17:E27").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C4:C14").Value
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C4").Value = 0 Then
.Range("E17").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C4").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C5").Value = 0 Then
.Range("E18").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C5").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C6").Value = 0 Then
.Range("E19").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C6").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C7").Value = 0 Then
.Range("E20").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C7").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C8").Value = 0 Then
.Range("E21").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C8").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C9").Value = 0 Then
.Range("E22").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C9").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C10").Value = 0 Then
.Range("E23").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C10").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C11").Value = 0 Then
.Range("E24").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C11").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C12").Value = 0 Then
.Range("E25").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C12").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C13").Value = 0 Then
.Range("E26").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C13").Value
End If
If Not Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C14").Value = 0 Then
.Range("E27").Value = Workbooks("Master_Key.xlsm").Worksheets("Master_Key").Range("C14").Value
End If
Application.Calculate
FileName = Range("C11")
ActiveWorkbook.ChangeFileAccess Mode:=xlReadWrite
Application.ActiveWorkbook.SaveAs MyPath & FileName, FileFormat:=52
mybook[B].Close[/B] savechanges:=False
End With
End If
Next Fnum
End If
With Application
.ScreenUpdating = True
.EnableEvents = True
.Calculation = CalcMode
End With
End Sub
Last edited: