Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
5 行のテキストを含む特定のドキュメントがあります。行はデリミタで区切られます。ドキュメント全体を文字列として読み込んでおり、VBA で区切り記号を使用して分割することを楽しみにしています。
助けてください!!!!
これを試して:
Sub SplitTest() Dim splitTarget As Variant Dim splitString as string splitString = "test1,test2,test3" splitTarget = Split(splitString, ",") End Sub