本文介绍了我正在尝试写一个简单的Excel方程,将重复单元格60次,然后切换到下一列中的单元格并重复的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

基本上,我想使用单元格R1值A,现在从H242到H301填充60行,然后将方程跳到S1值B,并填充从H302到H361的下一个60行。然后继续这个60重复,+1列,60重复等。



有没有办法使用excel方程式或Excel中的编程? p>

对不起,如果这是一个noobie,我试着寻找最近2个小时的答案,但找不到我正在寻找可能是因为我无法搜索正确的事情。

解决方案

不需要宏。



  = INDEX(R $ 1:ZZ $ 1,1,ROUNDUP ROWS($ 1:1)/ 60,0))

并复制。



注意:



您可能需要修改 ZZ 需要更多数据。


Basically, I'd like to use cell R1 "value A" right now to fill 60 rows from H242 to H301, then have the equation skip to S1 "value B" and fill the next 60 rows from H302 to H361. Then continue on with this 60 repeat, +1 column over, 60 repeat, etc.

Is there a way to do this using excel equations or programming in Excel?

Sorry if this is a bit noobie, I tried looking for an answer of the last 2 hours but couldn't find what I was looking for possibly because of my inability to search for the correct thing.

解决方案

There is no need for a macro.

In H242 enter:

=INDEX(R$1:ZZ$1,1,ROUNDUP(ROWS($1:1)/60,0))

and copy down.

NOTE:

You may need to modify the ZZ if you need more data.

这篇关于我正在尝试写一个简单的Excel方程,将重复单元格60次,然后切换到下一列中的单元格并重复的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-25 09:48