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.
有一些工具可以从包含字母和数字的单元格中提取整数。我试图从一个有几个数字的单元格中获取 - 构成这个数字的数字。在单元格中有一个数字,例如 24783 我想提取到 5 个不同的单元格 2;4;7; 8个;3
您可以使用以下公式访问单元格 A1 的每个数字:
=ROUNDDOWN(MOD(A1, 10), 0) // first digit =ROUNDDOWN(MOD(A1 / 10, 10), 0) // second digit =ROUNDDOWN(MOD(A1 / 100, 10), 0) // third digit ... and so on
但我认为应该有更好的解决方案来实现这一目标。