本文介绍了从第n行复制单元格的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从此Google电子表格,然后将其放入新列中.名称将排在第n行.
I'd like to grab the names in every person's name from this google spreadsheet and put it into a new column. The names will be every nth row.
推荐答案
或者,也尝试:
=filter(A2:A, mod(row(A2:A)+1,3)=0)
这篇关于从第n行复制单元格的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!