remove_duplicates method

remove_duplicates

Removes duplicate rows in the sheet.

def remove_duplicates(self):
    ...

remove_duplicates

Removes duplicate values in the range.

def remove_duplicates(self, start_row, start_column, end_row, end_column):
    ...
ParameterTypeDescription
start_rowintThe start row.
start_columnintThe start column
end_rowintThe end row index.
end_columnintThe end column index.

remove_duplicates

Removes duplicate data of the range.

def remove_duplicates(self, start_row, start_column, end_row, end_column, has_headers, column_offsets):
    ...
ParameterTypeDescription
start_rowintThe start row.
start_columnintThe start column
end_rowintThe end row index.
end_columnintThe end column index.
has_headersboolIndicates whether the range contains headers.
column_offsetslistThe column offsets.

See Also