B
Bill
I would be grateful if somebody could advise
if there is a simpler way of deleting duplicated
cells in a spreadsheet
Spreadsheet
Add1 Unique
Add2
Add3
Add4 Populated via If Statement (Thanks to Frank)
PCode
Vb Code tagged to the end of a macro
Range("B2").Select
If B2 = E2 Then
E2 = ClearContents
Selection.ClearContents
End If
Range("C2").Select
If C2 = E2 Then
C2 = ClearContents
Selection.ClearContents
End If
Oddly this works and the duplicated cell is deleted
but my problem is that I would need to enter this code
per cell and column (250 * 3)
If there is more effective way of doing this and somebody
could point me in the right direction I would appreciate
it
Many thanks
Bill
if there is a simpler way of deleting duplicated
cells in a spreadsheet
Spreadsheet
Add1 Unique
Add2
Add3
Add4 Populated via If Statement (Thanks to Frank)
PCode
Vb Code tagged to the end of a macro
Range("B2").Select
If B2 = E2 Then
E2 = ClearContents
Selection.ClearContents
End If
Range("C2").Select
If C2 = E2 Then
C2 = ClearContents
Selection.ClearContents
End If
Oddly this works and the duplicated cell is deleted
but my problem is that I would need to enter this code
per cell and column (250 * 3)
If there is more effective way of doing this and somebody
could point me in the right direction I would appreciate
it
Many thanks
Bill