Option Explicit
Sub Treat()
Dim ObjDic As Object
Set ObjDic = CreateObject("Scripting.Dictionary")
Dim LR As Long
Dim WSh1 As Worksheet, WSh2 As Worksheet
Dim I As Long
Dim CheckChar As String
Dim ValD, ValE
Dim WkStg As String
Set WSh2 = Worksheets("Sheet2")
Set WSh1 = Worksheets("Sheet1")
CheckChar = "v"
Application.ScreenUpdating = False
With WSh2
LR = .Cells(Rows.Count, 1).End(xlUp).Row
'---
For I = 2 To LR
ValD = CurAdj(.Cells(I, 4)): ValE = CurAdj(.Cells(I, 5))
ObjDic.Item(Join(Array(.Cells(I, 1), .Cells(I, 2), .Cells(I, 3), ValD, ValE, .Cells(I, 6)), "/")) = Empty
Next I
'---
With Range(.Cells(2, 7), .Cells(LR, 7))
.ClearContents
WkStg = "=IF(ISBLANK(A2),"""",CONCATENATE(A2,"" "",B2,"" "",C2,"" "",D2,"" "",E2,"" "",F2,))"
.Cells(1, 1).Formula = WkStg
.FillDown
End With
End With
'=====
With WSh1
LR = .Cells(Rows.Count, 1).End(xlUp).Row
'---
With Range(.Cells(2, 7), .Cells(LR, 7))
.FillDown
.ClearContents
End With
'---
For I = 2 To LR
ValD = CurAdj(.Cells(I, 4)): ValE = CurAdj(.Cells(I, 5))
If (ObjDic.exists(Join(Array(.Cells(I, 1), .Cells(I, 2), .Cells(I, 3), ValD, ValE, .Cells(I, 6)), "/"))) Then
.Cells(I, 7) = "v"
End If
Next I
'---
With Range(.Cells(2, 8), .Cells(LR, 8))
.ClearContents
WkStg = "=IF(ISBLANK(A2),"""",IF(G2<>""v"",INDEX(Sheet2!$A:$G,MATCH(Sheet1!C2,Sheet2!$C:$C,0),7),""""))"
.Cells(1, 1).Formula = WkStg
.FillDown
End With
End With
Application.ScreenUpdating = True
End Sub
Function CurAdj(WkVal As Range) As String
Dim WkF As String
WkF = WkVal.NumberFormat
CurAdj = IIf(InStr(1, WkF, "$$") <> 0, "$", IIf(InStr(1, WkF, "$€") <> 0, "€", "")) & WkVal
End Function
Bookmarks