📜  excel vba 向下移动到下一个可见单元格 - VBA 代码示例

📅  最后修改于: 2022-03-11 14:51:56.434000             🧑  作者: Mango

代码示例1
' Select the cell immediately above the filtered view
Range("A1").Select
' Move the selection to the first visible filtered cell of the same column
ActiveCell.Offset(1, 0).Select
  Do Until ActiveCell.EntireRow.Hidden = False
  ActiveCell.Offset(1, 0).Select
  Loop