- ©«¤l
- 227
- ¥DÃD
- 3
- ºëµØ
- 1
- ¿n¤À
- 273
- ÂI¦W
- 0
- §@·~¨t²Î
- XP
- ³nÅ骩¥»
- XP
- ¾\ŪÅv
- 20
- ©Ê§O
- ¤k
- µù¥U®É¶¡
- 2011-3-22
- ³Ì«áµn¿ý
- 2013-1-29
|
- Sub Ex()
- Dim D As Object, R As Range
- Set D = CreateObject("Scripting.Dictionary")
- With Sheet1
- For Each R In .Range(.Cells(2, 3), .Cells(65536, 4).End(xlUp)).Rows
- D(R.Cells(1) & R.Cells(2)) = R
- Next
- End With
- If D.Count = 0 Then Exit Sub
- With ListBox1
- .ColumnCount = 2
- .List = Application.Transpose(Application.Transpose(D.items))
- End With
- End Sub
½Æ»s¥N½X |
|