我是Excel Sheet的新手。必须更新如下信息的单元格。任何人都知道将值更新为细胞。请分享信息。
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
答案 0 :(得分:0)
将以下内容放入D9,
=--TRIM(MID(SUBSTITUTE($C9, "/", REPT(" ", 99)), (COLUMN(A:A)-1)*99+1, 99))
直接填写F9。应用IFERROR function作为包装以避免错误。