Cells.RemoveDuplicates

RemoveDuplicates()

Removes duplicate rows in the sheet.

public void RemoveDuplicates()

See Also


RemoveDuplicates(int, int, int, int)

Removes duplicate values in the range.

public void RemoveDuplicates(int startRow, int startColumn, int endRow, int endColumn)
ParameterTypeDescription
startRowInt32The start row.
startColumnInt32The start column
endRowInt32The end row index.
endColumnInt32The end column index.

See Also


RemoveDuplicates(int, int, int, int, bool, int[])

Removes duplicate data of the range.

public void RemoveDuplicates(int startRow, int startColumn, int endRow, int endColumn, 
    bool hasHeaders, int[] columnOffsets)
ParameterTypeDescription
startRowInt32The start row.
startColumnInt32The start column
endRowInt32The end row index.
endColumnInt32The end column index.
hasHeadersBooleanIndicates whether the range contains headers.
columnOffsetsInt32[]The column offsets.

See Also