TIL

Today I Learned. 知ったこと、学んだことを書いていく

2017-08-28から1日間の記事一覧

Functionで配列を返す - VBA

VBA

配列を返す関数の記述の仕方 Function sayHelloWorld() As String() Dim testArr(1) As String testArr(0) = "Hello" testArr(1) = "World" sayHelloWorld = testArr End Function 参考文献 excel vba 関数の引数と戻り値を配列にする - yoshiya_naの日記