Excelの異なるファイルで多数の文字列を読み込み、それらのグループを作成します。VBAでコレクションの例をどのように再現できますか?
私が正しく理解していれば、どれだけの文字列があるかわからないので、配列の代わりにコレクションを使うほうがいいです。
コレクションを操作する方法を知りたい場合は、今すぐthis exampleを再現したいだけです。
' Create a list of strings.
Dim salmons As New List(Of String)
salmons.Add("chinook")
salmons.Add("coho")
salmons.Add("pink")
salmons.Add("sockeye")
' Iterate through the list.
For Each salmon As String In salmons
Console.Write(salmon & " ")
Next
'Output: chinook coho pink sockeye
が、私は何も変更していない、そしてそれは私に与えている
Compile error: Expected: end of statement
ノートでは、私はそれをやったし、問題がまだある
For the examples in this topic, include Imports statements for the System.Collections.Generic and System.Linq namespaces.
を言います。
Imports System.Collections.Generic
Imports System.Linq
私は何が欠けていますか?
完璧に動作します。 VBAのどこのドキュメントを見つけることができますか? –
Excel VBAリファレンス:https://msdn.microsoft.com/VBA/VBA-Excel –