教學資源:Excel VBA, Photoshop, Illustrator, 系統優化, 其他電腦技術
網路資源:Free web hosting, file hosting, image hosting, etc.
有用軟體
酷站連結
2007年9月3日 星期一
移除重複 record
先把 records sort 好
Sub remove_duplicated_rec() Worksheets(1).Activate lastr = Rows(Rows.Count).End(xlUp).Row r = 2 Do While r <= lastr * 2 If Cells(r, 1) = Cells(r - 1, 1) And Cells(r, 1) <> "" Then Rows(r).Delete Shift:=xlUp r = r - 1 End If r = r + 1 Loop End Sub
沒有留言:
張貼留言