我正在尝试使用 Excel 填充我拥有的组织层次结构中的空白单元格。之前和之后的场景如下。
我已经尝试过使用伪代码。
For all rows
For all cells in row
If cell is populated, row++
If cell is not populated, copy the value immediately above to the current cell and check next cell in row.
- 这个逻辑合理吗?
- 我将如何在 VBA 中实现这一点?
我猜我可以像这样遍历每一行中的每个单元格......
For Each row In rng.Rows
For Each cell in row.Cells
'Do Something
Next cell
Next row
但后来我卡住了!任何帮助将不胜感激。