P
Pam Cheek
I have a table with 3 columns.
One of the columns (Projects) has multiple choices in it
for a given individual name.
for example
Name Ofc Sym Project(s)
Pam Cheek MAS/MASP MASP Taskers
CBMD Profiles
Web-Page Design
at the end of each of the choices in the projects column
is a paragraph mark. I want to strip them off. I tried
the following code, but it didn't work. Any
recommendations.
'Select each cell in the table
Celldata = ActiveDocument.Tables(1).Cell(i, j)
'Remove the paragraph and end-of-cell markers
'as we load the array
MyArrayName(i - 1, j - 1) = Left(Celldata, Len
(Celldata) - 2)
Next
Thanks,
PAM
One of the columns (Projects) has multiple choices in it
for a given individual name.
for example
Name Ofc Sym Project(s)
Pam Cheek MAS/MASP MASP Taskers
CBMD Profiles
Web-Page Design
at the end of each of the choices in the projects column
is a paragraph mark. I want to strip them off. I tried
the following code, but it didn't work. Any
recommendations.
'Select each cell in the table
Celldata = ActiveDocument.Tables(1).Cell(i, j)
'Remove the paragraph and end-of-cell markers
'as we load the array
MyArrayName(i - 1, j - 1) = Left(Celldata, Len
(Celldata) - 2)
Next
Thanks,
PAM