View Single Post
 
Old 07-05-2018, 09:09 AM
klutch klutch is offline Windows 7 64bit Office 2016
Advanced Beginner
 
Join Date: Jun 2018
Posts: 31
klutch is on a distinguished road
Default

Code:
 With wDoc
Dim ocolumn As Column
Dim ocell As Cell

For Each ocell In wDoc.Tables(8).Columns(3)
If Len(ocell.Range) = 2 Then
 ocell.Select
 Selection.PasteSpecial
 End If
 Next ocell
 End With
I am looking for something like this, but this does not have the right object property
Reply With Quote