Removing duplicate cells ?
Hello,
I did not find a function allowing me to remove duplicate cells.
In Zoho spreadsheet I guess I should do first :
a) rank column A (ascending) :
- Sub first()
- Sheets("Sheet2").Select
- Range("A1:C400").Select
- Selection.Sort Key1:=Range("A1:A400"),Order1:=xlAscending,MatchCase:=false,Orientation:=xlTopToBottom
- call kill_duplicate
- End sub
This should work ok ;)
b) then adapt in zoho the following that I use in excel :
- Sub kill_duplicate()
- 'First sort (ascending) the sheet by column A
- For i = [A65536].End(xlUp).Row To 2 Step -1
- If Range("A" & i).Value = Range("A" & i + 1).Value Then
- Rows(i).Delete
- End If
- Next i
- End Sub
Any idea ?
Thanks in advance ;)