Allowing the cell to be editable after macro.

Surion84

New Member
Joined
Jul 2, 2018
Messages
1
I have been trying to use this code, to scan data matrices into excel. They have three lines of data but when scanned they move to three individual cells. This code manages to keep them in a single cell so that multiple can be scanned into it, but it the event of a duplicate or an error, the cell is not editable.

Code:
[COLOR=#839496][FONT=Consolas]Private Sub Worksheet_Change(ByVal Target As Range) 

    If Target.Count > 1 Then Exit Sub 

    If Not Intersect(Target, Range("C2:C10")) Is Nothing Then 
        On Error GoTo Fìn 
        Application.EnableEvents = False 
        Dim vNew As Variant 
        vNew = Target.Value        
        Application.Undo 
        If Not IsEmpty(Target) Then 
            Target = Target.Value & Chr(10) & vNew 
        Else 
            Target = vNew 
        End If 
        'Target.Offset(1,0).Activate 
     End If

Fìn: 
    Application.EnableEvents = True

End Sub[/FONT][/COLOR]
 
Last edited by a moderator:

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.

Forum statistics

Threads
1,223,236
Messages
6,170,917
Members
452,366
Latest member
TePunaBloke

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