Ambiguous name error

Patriot2879

Well-known Member
Joined
Feb 1, 2018
Messages
1,227
Office Version
  1. 2010
Platform
  1. Windows
Hi I have the code below but I get an ambiguous name error come up please can you help.
the error comes on the line below
Code:
Private Sub Worksheet_Change(ByVal Target As Range)

Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    'This code goes in Book13, amend for book 14
    
    
    'this sub requires both workbooks to be open
    Dim wb As Workbook
    Dim spath As String, sFileName As String
    Dim bOpen As Boolean 'remember if workbook was open or not
    
    spath = "C:\Users\s21375\Desktop\"
    
    ' *** This line needs changing for Book 14
    sFileName = "Test1.xlsm"
    
    On Error Resume Next
    Set wb = Workbooks(sFileName)
    If wb Is Nothing Then
        Set wb = Workbooks.Open(spath & sFileName)
        If wb Is Nothing Then
            MsgBox "File can not be opened", vbCritical
            Exit Sub
        End If
    Else
        bOpen = True
    End If
    On Error GoTo 0
    
    Application.EnableEvents = False
    Application.ScreenUpdating = False
    
    wb.Sheets(Me.Name).Range(Target.Address) = Target
    If bOpen = False Then
        wb.Save

    End If
    Application.EnableEvents = True
    Application.ScreenUpdating = True
    
    
    If Not Intersect(Target, Me.Range("A2:R18")) Is Nothing Then
        ThisWorkbook.Save
    End If
End Sub
 
Re: Ambigious name error please help

Hi I have it working now but it only updates when the other spreadsheet is closed, it doesn't update if the other spreadsheet is open, please can you advise?
 
Upvote 0

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
Re: Ambigious name error please help

Hope you can help :) do i need to add something In the code?
 
Upvote 0
Re: Ambigious name error please help

It is working.
In Excel open test11.xlsm only.
Change AC6, test12.xlsm opens, [test11.xlsm]Sheet3!A2:R18 copies to the [test22.xlsm]Sheet3!A2:R18
Switch between already open test11.xlsm and test12.xlsm , change AC6 in one or another workbook and see that range A2:R18 is synchronized (is the same) in both workbooks.
 
Last edited:
Upvote 0
Re: Ambigious name error

What is your Excel version?
You may also try this modification of the code, in all versions of Excel it restores an active workbook after synchronization regardless another workbook was already open or not:
Rich (BB code):
Option Explicit
 
Private Sub Worksheet_Change(ByVal Target As Range)
 
  '--> User settings, change to suit
  Const FullName1 = "C:\Users\s21375\Desktop\Test2.2\test22.xlsm"
  Const FullName2 = "C:\Users\s21375\Desktop\test2\test11.xlsm"
  '<-- End of the settings
 
  Dim a() As Variant, i As Long, j As Long, TargetValue
  Dim sThisFullName As String, sFileName As String
  Dim wb As Workbook, IsOpen As Boolean
 
  If Target.Address <> "$AC$6" Then Exit Sub
 
  ' Save Target.Value
  TargetValue = Target.Value
 
  ' Disable events handling
  Application.EnableEvents = False
  Application.Calculation = xlCalculationAutomatic
 
  ' Determine Row # and Column #
  i = Application.Match(Range("AC3"), Range("A1:A18"), 0)
  j = Application.Match(Range("AC4"), Range("A2:R2"), 0)
 
  ' Adjust the Intersection cell Value by substracting Input in AC6
  Cells(i, j).Value = Cells(i, j).Value - TargetValue
 
  ' Clear ONLY Target cell
  Target.ClearContents
  Target.Select
 
  ' Update A2 current region in another workbook in the same folder
  sThisFullName = ThisWorkbook.FullName
  If LCase(sThisFullName) = LCase(FullName1) Then
    sFileName = FullName2
  Else
    sFileName = FullName1
  End If
 
  Application.ScreenUpdating = False
  a() = Me.Range("A2").CurrentRegion.Value
  On Error Resume Next
  Set wb = Workbooks(Mid(sFileName, InStrRev(sFileName, "\") + 1))
  IsOpen = (Err = 0)
  On Error GoTo exit_
  If Not IsOpen Then
    Set wb = Workbooks.Open(sFileName, UpdateLinks:=False)
    Application.OnTime Now, Me.CodeName & ".ActivateMe"
  End If
 
  With wb
    .Sheets(Me.Name).Range("A2").CurrentRegion.Resize(UBound(a), UBound(a, 2)).Value = a()
    .Save
    '.Close
  End With
  
exit_:
 
  ' Restore events handling and screen updating
  Application.EnableEvents = True
  Application.ScreenUpdating = True
 
  ' Inform about error
  If Err Then MsgBox Err.Description, vbCritical, "Error!"
 
End Sub
 
Private Sub ActivateMe()
  Me.Parent.Activate
End Sub
 
Upvote 0
Re: Ambigious name error

Hi thank you for the code but I get an error now on the line below.

My version of excel is Office16, would this make adifference?

Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Cells(i, j).Value = Cells(i, j).Value – TargetValue[/COLOR][/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][COLOR=#000000][/CO[/COLOR][/SIZE][/FONT]DE]

Sorry about this I am still new to all this and really appreciate your help.
 
Last edited:
Upvote 0
Re: Ambigious name error

... I get an error now on the line below.
Code:
[FONT=Calibri][SIZE=3][COLOR=#000000]Cells(i, j).Value = Cells(i, j).Value – TargetValue[/COLOR][/SIZE][/FONT]
[FONT=Times New Roman][SIZE=3][COLOR=#000000][/CO[/COLOR][/SIZE][/FONT]DE][/QUOTE]
What is in error message?
May be there is no matches between [COLOR=#333333]AC3 and A1:A18 or AC4 and [/COLOR][COLOR=#333333]A2:R2[/COLOR]
 
Upvote 0
Re: Ambigious name error

hi with the new code it doesn't update either sheet unfortunately
.

is it because its Office16?
 
Last edited:
Upvote 0
Re: Ambigious name error

Hi this is very odd I have made 2 new folders on a friends computer and saved the 2 sheets and tested on theres and it works great, she has the same excel as me. Why is that do you think? thjis is very weird.
 
Upvote 0
Thank you for all your help. Please one more thing please can you advise how I can add another workbook to this code please?
 
Upvote 0

Forum statistics

Threads
1,215,162
Messages
6,123,382
Members
449,097
Latest member
Jabe

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top