比较Excel中的2个字符串并返回余数

时间:2017-07-13 21:07:35

标签: excel excel-vba excel-formula vba

我想从标题中减去某些单词并输出余数。

是否有完成此任务的公式或宏?

感谢您的帮助。

主标题:
Apple Inc Iphone 7手机套

减去这些词:
Apple Iphone 7

输出剩余物:
公司案例

2 个答案:

答案 0 :(得分:0)

尝试使用"查找和替换" Excel中的功能。这可以解决问题:

Ctrl+H

这会打开一个菜单,您可以在其中用其他内容替换特定实例或公式中字符串的所有实例(或根本不替换任何内容)。

答案 1 :(得分:0)

如上所述,如果有一个TEXTJOIN(),则此数组公式将执行此操作:

=TEXTJOIN(" ",TRUE,IF(ISNUMBER(SEARCH(TRIM(MID(SUBSTITUTE(A1," ",REPT(" ",999)),999 * (ROW(INDIRECT("1:" & LEN(A1) - LEN(SUBSTITUTE(A1," ",""))+1))-1)+1,999)),B1)),"",TRIM(MID(SUBSTITUTE(A1," ",REPT(" ",999)),999 * (ROW(INDIRECT("1:" & LEN(A1) - LEN(SUBSTITUTE(A1," ",""))+1))-1)+1,999))))

作为数组公式,必须在退出编辑模式时使用Ctrl-Shift-Enter而不是Enter确认。如果操作正确,那么Excel会将{}放在公式周围。

enter image description here

如果您没有TEXTJOIN()原生,请将此代码放在附加到工作簿的模块中,并完全按照上述说明使用公式。

Function TEXTJOIN(delim As String, skipblank As Boolean, arr)
    Dim d As Long
    Dim c As Long
    Dim arr2()
    Dim t As Long, y As Long
    t = -1
    y = -1
    If TypeName(arr) = "Range" Then
        arr2 = arr.Value
    Else
        arr2 = arr
    End If
    On Error Resume Next
    t = UBound(arr2, 2)
    y = UBound(arr2, 1)
    On Error GoTo 0

    If t >= 0 And y >= 0 Then
        For c = LBound(arr2, 1) To UBound(arr2, 1)
            For d = LBound(arr2, 1) To UBound(arr2, 2)
                If arr2(c, d) <> "" Or Not skipblank Then
                    TEXTJOIN = TEXTJOIN & arr2(c, d) & delim
                End If
            Next d
        Next c
    Else
        For c = LBound(arr2) To UBound(arr2)
            If arr2(c) <> "" Or Not skipblank Then
                TEXTJOIN = TEXTJOIN & arr2(c) & delim
            End If
        Next c
    End If
    TEXTJOIN = Left(TEXTJOIN, Len(TEXTJOIN) - Len(delim))
End Function