我是Excel工作表的新手。必须像下面这样更新单元格信息。是否有人知道short会将值更新为单元格。请分享相关信息。
enter code here
In C9 Cell if I update the value
C9 ==> 30431/31814/66335
it should automatically needs to update in a cell D9,E9,F9 like below,
D9 ==> 30431
E9 ==> 31814
F9 ==> 66335发布于 2015-09-09 15:23:50
将以下内容放入D9中:
=--TRIM(MID(SUBSTITUTE($C9, "/", REPT(" ", 99)), (COLUMN(A:A)-1)*99+1, 99))向右填充到F9。应用IFERROR function作为包装器以避免错误。

https://stackoverflow.com/questions/32472567
复制相似问题