简体   繁体   English

如何在excel中多次引用某个单元格

[英]How to refer into certain cell in excel n times

I want to add an entire column function which is able to refer into A1 4 times, then A2 4 times, A3 4 times etc. 我想添加一个完整的列函数,该函数可以引用A1 4次,然后引用A2 4次,引用A3 4次,等等。

Is there function for this kind of action? 这种动作有功能吗?

Starting in Row 1 and copied down: 从第1行开始并向下复制:

INT((ROW()-1)/4)

will return four 0 s, four 1 s, four 2 s and so on. 将返回四个0 s,四个1 s,四个2 s,依此类推。 This can be fed into the OFFSET function to produce the desired result: 可以将其输入到OFFSET函数中以产生所需的结果:

 =OFFSET(A$1,INT((ROW()-1)/4),,)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM