I will attach the file we are using at the moment.
personalb.xlsm
Here is the code that is working for the eBay category 1 and 2, and the recommended-browse node 1 and 2, but not BPD Store Category 1 and 2, or SD Store Category 1 and 2.
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim lastrow As Long
Dim rngList As Range
' lastrow = Cells(Rows.Count, "A").End(xlUp).Row
Set rngList = Range("AB3").CurrentRegion
If Target.Cells.Count > 1 Then Exit Sub
On Error Resume Next
If Not Intersect(Target, Range("B18:B19")) Is Nothing Then ' user is in column-B
Target.Value = Application.WorksheetFunction.VLookup(Target.Value, rngList, 2, False)
End If
Set rngList = Nothing
'End Sub
'Private Sub Worksheet_Change2(ByVal Target As Range)
' Dim lastrow As Long
' Dim rngList As Range
' lastrow = Cells(Rows.Count, "B:C").End(xlUp).Row
Set rngList = Range("AE3").CurrentRegion
If Target.Cells.Count > 1 Then Exit Sub
On Error Resume Next
If Not Intersect(Target, Range("B20:B21")) Is Nothing Then ' user is in column-B
Target.Value = Application.WorksheetFunction.VLookup(Target.Value, rngList, 2, False)
End If
Set rngList = Nothing
'End Sub
'Private Sub Worksheet_Change2(ByVal Target As Range)
' Dim lastrow As Long
' Dim rngList As Range
' lastrow = Cells(Rows.Count, "A").End(xlUp).Row
Set rngList = Range("AH3").CurrentRegion
If Target.Cells.Count > 1 Then Exit Sub
On Error Resume Next
If Not Intersect(Target, Range("B22:B23")) Is Nothing Then ' user is in column-B
Target.Value = Application.WorksheetFunction.VLookup(Target.Value, rngList, 2, False)
End If
Set rngList = Nothing
'End Sub
'Private Sub Worksheet_Change2(ByVal Target As Range)
' Dim lastrow As Long
' Dim rngList As Range
' lastrow = Cells(Rows.Count, "H").End(xlUp).Row
Set rngList = Range("BC3").CurrentRegion
If Target.Cells.Count > 1 Then Exit Sub
On Error Resume Next
If Not Intersect(Target, Range("H9:H10")) Is Nothing Then ' user is in column-B
Target.Value = Application.WorksheetFunction.VLookup(Target.Value, rngList, 2, False)
End If
Set rngList = Nothing
End Sub
Bookmarks