'单元格选择方法 Range("A1")
Select '选择A1单元格 Range("A1,C1")
Select '选择A1、C1单元格 Range("A1:C2")
Select '选择A1至C2单元格区域 Rows("1:1")
Select '选择第1行 Range("1:1,3:3")
Select '选择第1、3行 Rows("1:3")
Select '选择第1至3行 Columns("A:A")
Select '选择A列 Columns("A:C")
Select '选择A至C列 Cells
Select '选择全部单元格 '单元格格式设置-数字 Selection
NumberFormatLocal = "G/通用格式" '分类(C)_常规 Selection
NumberFormatLocal = "0
00_ " '分类(C)_数值 Selection
NumberFormatLocal = "¥#,##0
00;¥-#,##0
00" '分类(C)_货币 Selection
NumberFormatLocal = "_ ¥* #,##0
00_ ;_ ¥* -#,##0
00_ ;_ ¥* ""-""
_ Selection
NumberFormatLocal = "yyyy-m-d" '分类(C)_日期 Selection
NumberFormatLocal = "[$-F400]h:mm:ss AM/PM" '分类(C)_时间 Selection
NumberFormatLocal = "0
00%" '分类(C)_百分比 Selection
NumberFormatLoca