Array参数不能使用变量。
找个变通的办法吧。
根据A1所在区域的大小,自动编写对应的宏代码,然后执行。
- Sub test()
- Dim ar, j&, m&, n&, s$, tmpMacro$, tmpModule
-
- ' m = Cells(Rows.Count, 1).End(3).Row
- ' n = Cells(1, Columns.Count).End(1).Column
-
- ar = Range("A1").CurrentRegion '确定区域大小 这里是A1所在单元格区域
- m = UBound(ar): n = UBound(ar, 2) '得到最大行和最大列
-
- tmpMacro = "myRemoveDuplicatesMacro" '随便定一个宏名称
- s = s & "Sub " & tmpMacro & "()" & Chr(10) '宏起始行
-
- s = s & "ActiveSheet.Range(""" & Range("A1").CurrentRegion.Address & """).RemoveDuplicates Columns:=Array(1 _" & Chr(10)
- For j = 2 To n
- s = s & ", " & j
- If j Mod 20 = 0 Then s = s & " _" & Chr(10)
- Next
- s = s & "), Header:=xlNo" & Chr(10)
- s = s & "Msgbox ""OK""" & Chr(10)
- s = s & "End Sub" '宏结束行
- Msgbox s '确认代码
- Set tmpModule = ThisWorkbook.VBProject.VBComponents.Add(1)
- tmpModule.CodeModule.AddFromString s '在本文件中添加新的模块 并写入宏代码
- Application.Run "" & tmpMacro '执行此宏代码
- ThisWorkbook.VBProject.VBComponents.Remove tmpModule '删除此临时模块
- End Sub
复制代码
这样生成的模块代码例子如下:
- Sub myRemoveDuplicatesMacro()
- ActiveSheet.Range("$A$1:$IW$40").RemoveDuplicates Columns:=Array(1 _
- , 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 _
- , 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40 _
- , 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60 _
- , 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80 _
- , 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100 _
- , 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120 _
- , 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140 _
- , 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160 _
- , 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180 _
- , 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200 _
- , 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220 _
- , 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240 _
- , 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257), Header:=xlNo
- MsgBox "OK"
- End Sub
复制代码 |