色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

excel數組初始化方法

錢浩然2年前18瀏覽0評論

excel數組初始化方法?

您還可以使用利用Evaluate函數和靜態數組的速記格式.在下面的代碼中,設置varData,其中[]是Evaluate函數的簡寫,{…}表達式表示靜態數組.每行用a分隔;每個字段用a分隔.它可以使您獲得與simoco代碼相同的最終結果,但語法更接近原始問題:

Sub ArrayShorthand()

Dim varData As Variant

Dim intCounter1 As Integer

Dim intCounter2 As Integer

' set the array

varData = [{1, 2, 3; 4, 5, 6; 7, 8, 9}]

' test

For intCounter1 = 1 To UBound(varData, 1)

For intCounter2 = 1 To UBound(varData, 2)

Debug.Print varData(intCounter1, intCounter2)

Next intCounter2

Next intCounter1

End Sub

php 數組如何獲取字段,excel數組初始化方法