BaaL Mesaj tarihi: Mart 26, 2012 Paylaş Mesaj tarihi: Mart 26, 2012 bir sütunu kontrol edicek (12000 satır) duplicate buldugunda o duplicate'in oldugu satırı oldugu gibi silicek. bir makro lazım var mıdır bilen kullanan falan. Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
sifkal Mesaj tarihi: Mart 27, 2012 Paylaş Mesaj tarihi: Mart 27, 2012 Macroya gerek kalmıyor 2010 da dire söyle oluyordu sanırsam remove-duplicate Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
Suark Mesaj tarihi: Mart 27, 2012 Paylaş Mesaj tarihi: Mart 27, 2012 Data --> remove duplicates ten işini halledebilirsin. Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
ginaly Mesaj tarihi: Mart 27, 2012 Paylaş Mesaj tarihi: Mart 27, 2012 türkçe versiyonda yinelenenleri kaldır. Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
BaaL Mesaj tarihi: Mart 27, 2012 Konuyu açan Paylaş Mesaj tarihi: Mart 27, 2012 benim 3 kolonda birbiriyle alakalı 12000 veriden (ad,soyad,email) email kolonunu kontrol edip ordaki duplicatelere göre o satırı oldugu gibi uçurucak bir şey idi. bu dediğiniz ile yapamadım :d şu vb formülü çötürt diye çözüm getirdi (kod butonu yokmuş forumda) kod Public Sub DeleteDuplicateRows() ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' DeleteDuplicateRows ' This will delete duplicate records, based on the Active Column. That is, ' if the same value is found more than once in the Active Column, all but ' the first (lowest row number) will be deleted. ' ' To run the macro, select the entire column you wish to scan for ' duplicates, and run this procedure. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' Dim R As Long Dim N As Long Dim V As Variant Dim Rng As Range On Error GoTo EndMacro Application.ScreenUpdating = False Application.Calculation = xlCalculationManual Set Rng = Application.Intersect(ActiveSheet.UsedRange, _ ActiveSheet.Columns(ActiveCell.Column)) Application.StatusBar = "Processing Row: " & Format(Rng.Row, "#,##0") N = 0 For R = Rng.Rows.Count To 2 Step -1 If R Mod 500 = 0 Then Application.StatusBar = "Processing Row: " & Format(R, "#,##0") End If V = Rng.Cells(R, 1).Value ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' ' Note that COUNTIF works oddly with a Variant that is equal to vbNullString. ' Rather than pass in the variant, you need to pass in vbNullString explicitly. ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''' If V = vbNullString Then If Application.WorksheetFunction.CountIf(Rng.Columns(1), vbNullString) > 1 Then Rng.Rows(R).EntireRow.Delete N = N + 1 End If Else If Application.WorksheetFunction.CountIf(Rng.Columns(1), V) > 1 Then Rng.Rows(R).EntireRow.Delete N = N + 1 End If End If Next R EndMacro: Application.StatusBar = False Application.ScreenUpdating = True Application.Calculation = xlCalculationAutomatic MsgBox "Duplicate Rows Deleted: " & CStr(N) End Sub Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
wiski Mesaj tarihi: Mart 27, 2012 Paylaş Mesaj tarihi: Mart 27, 2012 remove duplicates o dediğinide yapardı, doğru kullanamamışsın neyse çözüme ulaşmışsın genede ;) Link to comment Sosyal ağlarda paylaş Daha fazla paylaşım seçeneği…
Öne çıkan mesajlar