Excel:Substract字符集

时间:2017-05-13 15:07:49

标签: excel excel-2010 excel-2007

我们有两个包含行业代码和排除行业代码的A列和B列。 我们需要第三列C减去A和B.

有任何公式可以达到这个目的吗?

DividerItemDecoration dividerItemDecoration = new DividerItemDecoration(recyclerView.getContext(),
    layoutManager.getOrientation());
recyclerView.addItemDecoration(dividerItemDecoration);

1 个答案:

答案 0 :(得分:0)

尝试以下用户定义函数:

Public Function Remove(s1 As String, s2 As String) As String
    Dim s As String
    ary = Split(s2, ",")
    s = Replace(Replace(s1, " ", Chr(1)), ",", " ")

    For Each a In ary
        s = Replace(s, a, "")
    Next a

    s = Application.WorksheetFunction.Trim(s)
    Remove = Replace(Replace(s, " ", ","), Chr(1), " ")
End Function


enter image description here

用户定义函数(UDF)非常易于安装和使用:

  1. ALT-F11调出VBE窗口
  2. ALT-I ALT-M打开了一个新模块
  3. 粘贴内容并关闭VBE窗口
  4. 如果保存工作簿,UDF将随之保存。 如果您在2003年之后使用的是Excel版本,则必须保存 该文件为.xlsm而不是.xlsx

    删除UDF:

    1. 按上述方式调出VBE窗口
    2. 清除代码
    3. 关闭VBE窗口
    4. 从Excel使用UDF:

      =删除(A1,B1)

      要了解有关宏的更多信息,请参阅:

      http://www.mvps.org/dmcritchie/excel/getstarted.htm

      http://msdn.microsoft.com/en-us/library/ee814735(v=office.14).aspx

      有关UDF的详细信息,请参阅:

      http://www.cpearson.com/excel/WritingFunctionsInVBA.aspx

      必须启用宏才能使其生效!