
Originally Posted by
extrudebg
This may be a complete longshot...I realize that. This is a completely simplified version of my situation.
I have 2 cells that contain multiple three digit numbers seperated by a space. Example:
Cell A1: 001 002 003 005 006 009 (all in one cell)
Cell A2: 002 003 004 005 006 007 (all in one cell)
I'm trying to find a way to verify if each three digit number is present in the other cell.
001 and 009 are in cell A1 and not A2
004 and 007 are in cell A2 and not A1
002 003 005 006 are in both
Thanks.
UDF
1) Hit Alt + F11
2) go to [Insert] - [Module] then paste the code onto the right pane
3) Hit Alt + F11 again
Select 2 horizontal 3 consecutive cells (e.g. B1:D1) and enter
=extrude(A1,A2)
Then confirm with Ctrl + Shift + Enter (Array formula entry)
Function extrude(txt1 As String, txt2 As String) As Variant
Dim TopOnly As String, BottonOnly As String, inBoth As String
With CreateObject("Scripting.Dictionary")
For Each e In Split(Application.Trim(txt1))
If Not .exists(e) Then .add e, Nothing
Next
For Each e In Split(Application.Trim(txt2))
If .exists(e) Then
inBoth = inBoth & IIf(inBoth = "",""," ") & e
.remove(e)
Else
BottomOnly = BottmOnly & IIf(BottmOnly = "",""," ") & e
End If
Next
If .Count > 0 Then TopOnly = Join(.keys)
End With
extrude = Array(TopOnly, BottomOnly, inBoth)
End Function
Bookmarks