使用第一个空白上方的单元格中的值填充不连续的空白单元格
我有一个如下所示的列:
1 red
2 blue
3 red
4
5 blue
6
7
8 white
空白指的是其上方的记录。所以#4 会与红色相关联 6 和 7 是蓝色的。
有没有一种简单的方法可以填充整列的空白?
I have a column like the following:
1 red
2 blue
3 red
4
5 blue
6
7
8 white
The blanks refer to the record above it. So #4 would be associated with red
and 6 and 7 would be blue.
Is there an easy way to fill in the blanks for entire column?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
A1:A8
。F5
显示“Goto”对话框。这将选择不连续的空白单元格范围。
=A3
并按 control+输入 。A1:A8
,然后编辑 - 复制。请注意,
=A3
指的是第一个空白单元格上方的单元格。如果您想使用宏来执行此操作,您可以循环遍历单元格并填充空单元格。
A1:A8
.F5
to show the Goto dialog.That will select a noncontiguous range of blank cells.
=A3
and press control+enter.A1:A8
, and Edit - Copy.Note that the
=A3
refers to the cell above the first blank cell.If you want to do it with a macro, you could loop through the cells and fill in the empty ones.