vbscript 将“A”列中的所有单元格值添加到数组“ArrV”中!

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vbscript 将“A”列中的所有单元格值添加到数组“ArrV”中!相关的知识,希望对你有一定的参考价值。

ArrV = Application.Transpose(Range([a1], Cells(Rows.Count, "A").End(xlUp))) 'Stores all the value in the column 'A' of Sheet 'COUNTRY' to the Array 'ArrV'!
    For I = LBound(ArrV) To UBound(ArrV)    'Uses 'Scripting Dictionary' object to store only unique value!
        ScrDIC(ArrV(I)) = 1
    Next
ArrV = ScrDIC.Keys  'Dumps the Unique values from 'Scripting Dictionary' object into the Array.

以上是关于vbscript 将“A”列中的所有单元格值添加到数组“ArrV”中!的主要内容,如果未能解决你的问题,请参考以下文章

Excel VBA代码查找列中的最大单元格值并删除其下方的所有行

根据下拉选择将文本附加到单元格值

UDF:对于列中小于 x 的单元格值,返回第一列中的所有值

如何参考r中另一列中的另一个单元格值更改列中的单元格值?

如何根据excel中的另一个单元格值自动填充两个不同列中的数据

Excel:如果在另一列中发现重复的单元格值,则突出显示绿色