一、关键词
定义变量 Dim
常量 Const
循环
for i to 10 step 1 循环体 next
For Each w in Worksheets Next w
判断
if i<10 then 结果
elseif i<100 then
结果2 else 结果3 end if
逻辑 OR、AND、NOT
范围 Range(A1,C3)
while
while 条件 内容 Wend
Do While 条件
内容
Loop
excel对象
指定sheet
Dim w1 As Worksheet Set w1=Worksheet(3) w1.Cell(5,3)=100
对象赋值,必须要用‘Set’
调用其他宏 Call + 宏名称
函数调用
sub test1() Cells(1,1)=Sum(5,3) End Sub Function Sum(a,b) Sum=a+b End Function
常见函数
MsgBox a 弹出警告框
Trim() 去掉两边空格
Replace(字符串,旧字符,新字符)