Excel Cell common Text

imgaur7

New Member
Joined
Dec 25, 2017
Messages
32
Hi,

I am trying to find the common/repeated text in Cell A2 AND Cell B2 and show the results in Cell C3

Eg:
Cell A2
Nice Job, agent 104

Cell B2
Great and nice, but what about 106

Result
Cell C3
nice

Referred some of the posts but they compare with the whole column which is not required here. Kindly check
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
C3? not C2?
Hope this helps.

Code:
Sub test()
Dim Dic, tmp, buf As String, buf2 As String
Dim i As Long, j As Long, k As Long
For i = 2 To cells(Rows.count, 1).End(xlUp).Row
    Set Dic = CreateObject("Scripting.Dictionary")
        For k = 1 To 2
            buf = StrConv(WorksheetFunction.Substitute(cells(i, k).Value, ",", ""), vbLowerCase)  
            tmp = split(buf, " ")
            For j = 0 To UBound(tmp)
                If Not Dic.Exists(tmp(j)) Then
                    Dic.Add tmp(j), tmp(j)
                Else
                    buf2 = buf2 & tmp(j) & ","
                End If
            Next
        Next
        cells(i + 1, 3).Value = Left(buf2, Len(buf2) - 1)
        buf = ""
        buf2 = ""
    Set Dic = Nothing
Next
End Sub
 
Upvote 0
C3? not C2?
Hope this helps.

Code:
Sub test()
Dim Dic, tmp, buf As String, buf2 As String
Dim i As Long, j As Long, k As Long
For i = 2 To cells(Rows.count, 1).End(xlUp).Row
    Set Dic = CreateObject("Scripting.Dictionary")
        For k = 1 To 2
            buf = StrConv(WorksheetFunction.Substitute(cells(i, k).Value, ",", ""), vbLowerCase)  
            tmp = split(buf, " ")
            For j = 0 To UBound(tmp)
                If Not Dic.Exists(tmp(j)) Then
                    Dic.Add tmp(j), tmp(j)
                Else
                    buf2 = buf2 & tmp(j) & ","
                End If
            Next
        Next
        cells(i + 1, 3).Value = Left(buf2, Len(buf2) - 1)
        buf = ""
        buf2 = ""
    Set Dic = Nothing
Next
End Sub


Typo error my bad its C2
Thanks for your help...:)

I am getting this error while running the code

Run-time error "5"
Invalid procedure call or argument
 
Upvote 0
ColumnA or B have single word?

Mostly Yes in Col A, BUT some times it might be 2 -3 words as well.

--------------------
Really would like to thank you for all the help.



----------------------------------------------------------------------------------------------------------------------------
(Another thread different issue still not able to get any solution :( )
Also if possible kindly check if it looks workable
https://www.mrexcel.com/forum/excel...a-code-sample-ie-excel.html?highlight=imgaur7
 
Upvote 0
Following eg might help you (its in table format in excel)

Table 1Table 2Solution
Nice picture!What do you love the most about this picturepicture
Nice picture!nice do you love the picturenice
GreatThanks and greatgreat
Nice picture for surenice do you love the picture for surepicture, sure

<colgroup><col><col><col></colgroup><tbody>
</tbody>
 
Upvote 0
mmm?
The second line solution should be "nice, picture" and fourth line should be "nice,picture,for,sure".
Please check the code as below.

Code:
Sub test()
Dim Dic, tmp, buf As String, buf2 As String, str As String
Dim i As Long, j As Long, k As Long
For i = 2 To cells(Rows.count, 1).End(xlUp).Row
Set Dic = CreateObject("Scripting.Dictionary")
    buf = cells(i, 1).Value & " " & cells(i, 2).Value
    For j = 1 To Len(buf)
        If Mid(buf, j, 1) Like "[ ,a-z,A-Z]" Then
            str = str & Mid(buf, j, 1)
        End If
    Next
    buf = StrConv(str, vbLowerCase)
    tmp = split(buf, " ")
    For k = 0 To UBound(tmp)
        If Not Dic.Exists(tmp(k)) Then
            Dic.Add tmp(k), tmp(k)
        Else
            buf2 = buf2 & tmp(k) & ","
        End If
    Next
    If Len(buf2) > 0 Then
        cells(i, 3).Value = Left(buf2, Len(buf2) - 1)
    End If
    buf2 = ""
    str = ""
    Set Dic = Nothing
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,573
Members
449,089
Latest member
Motoracer88

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