Copy the second value in each row to a specific column

时间:2015-07-28 22:15:28

标签: google-sheets google-docs google-apps

Given the table:

A  B  C  D  E
x  x  52 50 48 ...
67 69 71 73 75 ...
57 x  56 49 48 ...
62 x  x  66 66 ...

How to find the second number from the left in each line (marked here with *)?

A    B    C    D    E       Z
x    x    52  *50*  48 ...  50
67  *69*  71   73   75 ...  69
57   x   *56*  49   48 ...  56
62   x    x   *66*  66 ...  66

so that finally for each row the marked number will appear in Column Z.

1 个答案:

答案 0 :(得分:1)

将其放在Z栏中:=index(filter(A1:Y1, isnumber(A1:Y1)), 1, 2)。 根据您在电子表格设置中选择的语言,您可能需要将,更改为;。 例如法语和德语是;。对于英语,它是,

相关问题