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 并将其放在一列下,然后提取 3 并将其放在另一列中。
请帮我解决一下这个。
使用“数据”选项卡上的“文本到列”功能。在菜单中,您将选择 Delimited,然后在下一个屏幕上选择 Comma 作为分隔符。
如果你绝对需要使用 VBA,你可以使用 Split 功能。
Split("42, 12, 19", ", ")
将返回以下数组:
{"42", "12", "19"}
然后,您可以将这些值粘贴到列中。