As an option
Option Explicit
Private Sub Worksheet_Change(ByVal Target As Range)
Dim myCol As Range
Dim myRow As Range
Dim my1Name As String
Dim my2Name As String
If Not Intersect(Target, Range("B2:V26")) Is Nothing Then
If Not Cells(1, Target.Column) = Cells(Target.Row, 1) Then
my1Name = Cells(1, Target.Column).Value
my2Name = Cells(Target.Row, 1).Value
Set myRow = Columns(1).Find(what:=my1Name, LookIn:=xlValues, lookat:=xlWhole)
Set myCol = Rows(1).Find(what:=my2Name, LookIn:=xlValues, lookat:=xlWhole)
Application.EnableEvents = False
Intersect(myRow.EntireRow, myCol.EntireColumn) = Target.Value
Application.EnableEvents = True
End If
End If
End Sub
Bookmarks