SpecialCells 方法
返回一个符合指定类型和值得Range对象.
expression.SpecialCells(Type, Value)
Type 需要xlCellType, 见下表:
xlCellTypeAllFormatConditions. 任何格式的单元格
xlCellTypeAllValidation. 含有验证条件的单元格
xlCellTypeBlanks. 空单元格
xlCellTypeComments. 含注释的单元格
xlCellTypeConstants. 含有常量的单元格
xlCellTypeFormulas. 含公式的单元格
xlCellTypeLastCell. 所用区域中的最后一个单元格
xlCellTypeSameFormatConditions. 条件格式相同的单元格
xlCellTypeSameValidation. 验证条件相同的单元格
xlCellTypeVisible. 所有可见单元格
Value 变量
如果Type是
xlCellTypeConstants 或 xlCellTypeFormulas, 这个参数值用于指定那种单元格包含在返回结果中.
这些值可以加在一起返回多个类型. 默认是选择所有内容和格式, 不管是什么类型的但换个. 值可以是 XlSpecialCellsValue
内容之一.见下表:
xlErrors
xlLogical
xlNumbers
xlTextValues
例子: 返回选定区域内最后一个单元格
Worksheets("Sheet1").Activate
ActiveSheet.Cells.SpecialCells(xlCellTypeLastCell).Activate
阅读(2482) | 评论(0) | 转发(0) |