一些通用的东西

Application.ScreenUpdating 设置VBA执行过程中是否刷新屏幕。

元素的选择和操作

ActiveCell.CurrentRegion.Select,当前元素所在的“部分”。

ActiveCell.End(xlDown).Select,选择到最后。

'选择一列,这个方式很有意思。
Range("a1", Range("a65535").End(xlUp))
[a65536].End(xlUp)
'Cell是用来选中某个单元格的。
Cells(activecell.row,"b").value

'&是字符串操作符?
Range("B" & i)

If not Cell.EntireRow.Hidden