'I want to know how to Remove duplicates on a single column in excel USING PYTHON
I am just a beginner and am working on to automate excel file using python. Can someone pleaseee tell the code on how to remove duplicates from single column in excel using python.
Also I want to know if its possible to run macros in excel from python, and if so, will the automation of excel be easier using python?
Solution 1:[1]
Also I want to know if its possible to run macros in excel from python
Yes, use RemoveDuplicates:
Sub RemoveDupsEx1()
//Check column A,B,C and remove dulipates.
Range("A1:C8").RemoveDuplicates Columns:=Array(1, 2, 3), Header:=xlYes
End Sub
Note: [Header] – Does data have a header? xlNo (default), xlYes, xlYesNoGuess
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | navylover |
