VBA Code not working in shared workbook

wlbamc

Board Regular
Joined
Apr 19, 2016
Messages
99
Office Version
  1. 2016
I have a VBA code that does 2 things, firstly it stops copy and pasting over validated cells and secondly it automatically moves lines from one tab to another, for some reason when I make the workbook a shared one, the copy and paste part of the code no longer works
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
    Dim xValue As String
    Dim xCheck1 As String
    Dim xCheck2 As String
    If Target.Count = 1 Then
        Application.EnableEvents = False
        xValue = Target.Value
        On Error Resume Next
        xCheck1 = Target.Validation.InCellDropdown
        On Error GoTo 0
        Application.Undo
        On Error Resume Next
        xCheck2 = Target.Validation.InCellDropdown
        On Error GoTo 0
        If xCheck1 = xCheck2 Then
            Target = xValue
        Else
            MsgBox "No pasting allowed!"
        End If
        Application.EnableEvents = True
    End If
    If Intersect(Target, Range("M:M")) Is Nothing Then Exit Sub
    On Error GoTo endit
    Application.ScreenUpdating = False  'moved to prevent exiting sub with screenupdating turned off
    Application.EnableEvents = False
    If Target.Value = "Patient Files" Then
        Target.EntireRow.Copy Worksheets("Patient Files").Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
        Target.EntireRow.Delete
End If
endit:
     Application.EnableEvents = True
     Application.ScreenUpdating = True
    
    End Sub

Any help gratefully received.

Thanks
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
How exactly are you sharing it?
Are you putting it in SharePoint?
Note that Excel VBA code does not work in the online (browser) version of Excel, only on local copies of Excel on your computer.
 
Upvote 0
How exactly are you sharing it?
Are you putting it in SharePoint?
Note that Excel VBA code does not work in the online (browser) version of Excel, only on local copies of Excel on your computer.
It is a local copy, we are using Review and Share Workbook
 
Upvote 0
What happens if you add break points into the code, then step through it line-by-line using the F8 key (on the computer where it doesn't work)?
You should be able to watch and see what it is doing. It may become obvious why it is not working when you can see that.
 
Upvote 0

Forum statistics

Threads
1,214,635
Messages
6,120,660
Members
448,975
Latest member
sweeberry

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