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.
データが次のような列があります: 2, 3 番号 2 を抽出して 1 つの列の下に配置し、3 を抽出して別の列に配置します。
これで私を助けてください。
[データ] タブの [テキストから列へ] 機能を使用します。メニューで Delimited を選択し、次の画面で区切り文字として Comma を選択します。
どうしても VBA を使用する必要がある場合は、Split 関数を使用できます。
Split("42, 12, 19", ", ")
次の配列を返します。
{"42", "12", "19"}
その後、それらの値を列に貼り付けることができます。