MINUS operation on Array elements

后端 未结 3 1679
忘掉有多难
忘掉有多难 2021-01-16 07:47

I have an Array say A=(11,23,32,44,56,88,55,14,78,79) And B=(44,56,88,55,14) .Now using VBScript can I perform Set operation MINUS to get an other

3条回答
  •  感情败类
    2021-01-16 08:09

    You can do that in Excel vba if u have named ranges Acol Bcol

    Range("C3:C10").FormulaArray = "=Acol-Bcol"
    

提交回复
热议问题