Python Forum
Unable to delete duplicates in excel with Python
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Unable to delete duplicates in excel with Python
#1
I am trying to delete duplicates but the job just finishes with an exit code 0 and does not delete any duplicates.

I have attempted to do this with openpyxl for an excel as well as other methods (including csv though this deleted rows excessively).

The duplicates for the data always exist in Column F and I am desiring to delete the entire row B-I

Any ideas?

import openpyxl
wb1 = openpyxl.load_workbook('C:/dwad/SWWA.xlsx')
ws1 = wb1.active # keep naming convention consistent

values = []
for i in range(2,ws1.max_row+1):
  if ws1.cell(row=i,column=1).value in values:
    #pass
  #else:
    values.append(ws1.cell(row=i,column=1).value)

for value in values:
  ws1.append([value])

CSV:
with open('1.csv','r') as in_file, open('2.csv','w') as out_file:
    seen = set() # set for fast O(1) amortized lookup
    for line in in_file:
        if line not in seen: 
            seen.add(line)
            out_file.write(line)
[Image: cHzLyG]
Reply


Messages In This Thread
Unable to delete duplicates in excel with Python - by tysondogerz - Nov-07-2017, 07:13 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Delete all Excel named ranges (local and global scope) pfdjhfuys 2 1,805 Mar-24-2023, 01:32 PM
Last Post: pfdjhfuys
  python move specific files from source to destination including duplicates mg24 3 1,105 Jan-21-2023, 04:21 AM
Last Post: deanhystad
  remove partial duplicates from csv ledgreve 0 797 Dec-12-2022, 04:21 PM
Last Post: ledgreve
  DELETE Post using Python FaceBook Graph API BIG_PESH 0 1,476 Mar-24-2022, 08:28 PM
Last Post: BIG_PESH
  Problem : Count the number of Duplicates NeedHelpPython 3 4,394 Dec-16-2021, 06:53 AM
Last Post: Gribouillis
  Removal of duplicates teebee891 1 1,803 Feb-01-2021, 12:06 PM
Last Post: jefsummers
  Displaying duplicates in dictionary lokesh 2 1,999 Oct-15-2020, 08:07 AM
Last Post: DeaD_EyE
  Unable to install python-wnck python-imaging on Void Linux linuxlight 1 3,213 Mar-08-2020, 03:53 AM
Last Post: Larz60+
  delete a Python object that matches an atribute portafreak 2 2,193 Feb-19-2020, 12:48 PM
Last Post: portafreak
  Unable to write to excel - Using openpyxl module starstud 2 4,489 Feb-05-2020, 03:53 AM
Last Post: starstud

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020