我在单元格 A1 中有多个值,它们由“;”分隔。一些相同的值可能在单元格 B1 中。我需要使用单元格 B1 中的值搜索单元格 A1 中的值。所有未找到的值都需要显示在单元格 C1 中。
例如 - 单元格 A1 (Apple;Orange;Cherry) 单元格 B1 (Apple;Orange;) 单元格 c1 需要将“Cherry”反映为未找到
我试过这段代码:
Sub Splitvalue()
Dim str, mystr As Variant
Dim tp As Integer
str = Split(Range("A1").Value, ";")
For tp = LBound(str) To UBound(str)
mystr = str(tp)
Next
End Sub