Match & add missed items between two sheets

Solved/Closed
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022 - Jan 12, 2022 at 03:35 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 - Feb 8, 2022 at 11:32 AM
Hello,


I have two sheets contain the same structure of data . the result should show in column B,C into sheet2 based on matching with sheet1 .
it should match column B in sheet1 with sheet2. as in the orginal data in sheet2 IN COLUMN B:C there are some missed items , should add them in column B and show the missed items in column C as I put the expected result H:I and should replace data when add new data into sheet2 after match with sheet1
here is my file https://www.dropbox.com/scl/fi/gqocq4ms49f9vlpugslhz/Bridgestone-Report.xlsm?dl=0&rlkey=jhrfql8y5gq5euskx4dlv0sh2
I hope some body help
Related:

2 responses

TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552
Feb 1, 2022 at 12:09 PM
Hi Abdomeghari,

I placed the result I had to work towards in columns G:I. These are not used by the code, but do give a nice comparison.

Before running the code:


And after:


There are some differences, but if you look closely you notice that the code is right :).

Here is the code:
Sub RunMe()
Dim cItem As Range
Dim sPart, ePart, cLen1, cLen2 As Integer
Dim rPart, cBrand As String

Sheets("MISSED").Select

For Each cell In Range("B2:B14")
    cell.Replace What:="  ", Replacement:=" ", LookAt:=xlPart
    cell.Value = Trim(cell.Value)
    Set cItem = Sheets("COMPLETE").Columns("A").Find(cell.Offset(0, -1))
    cBrand = cItem.Offset(0, 1).Value
    cell.Offset(0, 1).Value = cBrand
    sPart = 0
    ePart = Application.WorksheetFunction.Find(" ", cell.Value)
    Do
        rPart = Mid(cell.Value, sPart + 1, ePart - (sPart + 1))
        cLen1 = Len(cell.Offset(0, 1).Value)
        cell.Offset(0, 1).Replace What:=rPart & " ", Replacement:=vbNullString, LookAt:=xlPart
        cLen2 = Len(cell.Offset(0, 1).Value)
        If cLen1 = cLen2 Then cell.Offset(0, 2).Value = rPart
        sPart = ePart
        On Error GoTo EH
        ePart = Application.WorksheetFunction.Find(" ", cell.Value, sPart + 1)
    Loop Until sPart = ePart
CONT:
    With cell.Offset(0, 1)
        .Value = Trim(cell.Offset(0, 1).Value)
        .Replace What:=" ", Replacement:=",", LookAt:=xlPart
    End With
    cell.Value = cBrand
Next cell
Exit Sub
EH:
ePart = Len(cell.Value) + 1
rPart = Mid(cell.Value, sPart + 1, ePart - (sPart + 1))
cell.Offset(0, 1).Replace What:=rPart, Replacement:=vbNullString, LookAt:=xlPart
On Error GoTo -1
GoTo CONT
End Sub


Best regards,
Trowa
1
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Feb 1, 2022 at 02:42 PM
Hi Trowa,
honestly it's fantastic !
but I have a problem about last items THI or JAP . if I make mistake like THAI or JAPN . it doesn't show the error just show the right is THI, JAP .
it should also show in column error THAI, JAPN .
may you fix it,please? .
0
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552 > abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Feb 3, 2022 at 12:04 PM
Hi Abdomegahri,

Good to hear!
It seems I forgot to make the range on code line 8 dynamic, but that didn't face you.

To solve the issue you mentioned, replace code lines 34 to 37:
EH:
ePart = Len(cell.Value) + 1
rPart = Mid(cell.Value, sPart + 1, ePart - (sPart + 1))
cell.Offset(0, 1).Replace What:=rPart, Replacement:=vbNullString, LookAt:=xlPart
On Error GoTo -1
GoTo CONT


With this part:
EH:
ePart = Len(cell.Value) + 1
rPart = Mid(cell.Value, sPart + 1, ePart - (sPart + 1))
cLen1 = Len(cell.Offset(0, 1).Value)
cell.Offset(0, 1).Replace What:=rPart, Replacement:=vbNullString, LookAt:=xlPart
cLen2 = Len(cell.Offset(0, 1).Value)
If cLen1 = cLen2 Then cell.Offset(0, 2).Value = rPart
On Error GoTo -1
GoTo CONT


Best regards,
Trowa
1
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022 > TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022
Updated on Feb 4, 2022 at 12:32 PM
Hi Trowa,
excellent ! just last thing as you said if you can make the range dynamic in this line
For Each cell In Range("B2:B14")

I don't want changing the range every time when increase data I mean in this line .
best regards,
abdomeghari
0
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552 > abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Feb 7, 2022 at 11:31 AM
Hi Abdomegahri,

Sure, here is the replacement line:
For Each cell In Range("B2:B" & Range("B2").End(xlDown).Row)


Best regards,
Trowa
1
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022 > TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022
Feb 7, 2022 at 03:05 PM
Hi Trowa,
I don't find mark THANK and mark SOLVED to close this thread
anyway thanks very much for answering with this complicated project .
best regards ,
abdomeghari
0
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552
Jan 13, 2022 at 12:03 PM
Hi Abdo,

Not sure if this is possible.

Finding this string "13 R22.5 R187 " in this one "BS 13 R22.5 R187 JAP" and show what is missing can be done. But finding this one "BS 1200 R20 M802 " in this one "BS 1200 R20 18PR M802 THI" is too much.
We could skip the last part and search for "BS 1200 R20", but then we would also find "BS 1200 R20 18PR G580 THI" and "BS 1200 R20 G580 JAP". With that last one "BS 1200 R20 G580 JAP", we would need to skip the last 2 parts to find its match.

I don't see how this can be done.

Best regrads,
Trowa
0
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Jan 13, 2022 at 01:02 PM
HI Trowa,
I knew it . this is the big challenge. so I accept any alternative you suggest.
just tell me what's the right way you see it .
thanks
0
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552 > abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Jan 25, 2022 at 11:41 AM
Hi Abdo,

With the data you have, I don't see a way. I've shown you where the issue is. It is up to you to present the data is a different way. But I'm not sure that is possible for you. For me to be able to help you, there needs to be some kind of logic to your data.

Best regards,
Trowa
0
abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022 > TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022
Updated on Jan 26, 2022 at 03:35 AM
Hi TrowaD,
thanks again for following my question and try to help me.
to understand why I give you data are not logic as you see. actually theses reports issue by another company and send me by email . I do my best . I know the excel doesn't deal with all of the cases as what I want . there is rules and constrains to achieve some projects. so I would add helper column may be it help you . I amended the data by insert column A between sheets (complete,missed) should match between two sheets based on column A if there are some items are missed or wrong then should correct the items in column B into sheet missed based on sheet complete and show the item is corrected in column C and the error in column D
NOTE: the missed & corrected items should be in column C, as to column D just show the error
the pictures
sheet COMPLETE


SHEET MISSED


expected result in sheet MISSED

Best regards,
abdomeghari
0
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen December 27, 2022 552 > abdomegahri Posts 15 Registration date Wednesday March 3, 2021 Status Member Last seen February 8, 2022
Jan 27, 2022 at 12:11 PM
Hi Abdomeghari,

I understand that you can't choose how the data is presented to you. At least know, with the addition of the extra column, we know which cells should match.

I'll play around with it and get back to you.

Best regards,
Trowa
0