Re: Formating first line of every cells in first column of word ta
- From: "Suzanne S. Barnhill" <sbarnhill@xxxxxxxx>
- Date: Sat, 25 Apr 2009 13:19:02 -0500
I would suggest that you use separate rows for the headings and apply different paragraph styles to the heading and body rows.
--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
"Sunil Pradhan" <SunilPradhan@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message news:0D5BFB93-088C-46C1-8878-FB810EFE646A@xxxxxxxxxxxxxxxx
I want to have first line of each cells in first column of table in different
format (font type, size) etc. each cells have 1st line as heading and other
lines as body. I can send you an sample if i get your email address. I am
trying to write macro in word for the first time & unable to understand. I
am used to in writing macros in excel.
thx
"Graham Mayor" wrote:
What do you mean by 'format'?
What do you mean by 'convert'
What do you mean by 'first line'?
The following macro will locate the content of the first cell of each row in
turn and assign it to a range variable. You can then process that range to
do what you wish.
Dim oRng As Range
With ActiveDocument.Tables(1)
For i = 1 To .Rows.Count
Set oRng = .Rows(i).Cells(1).Range
oRng.End = oRng.End - 1
'orng is the content of the first cell of the row
Next i
End With
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Sunil Pradhan wrote:
> Trying to write a macro which can convert first line of every cells
> in first column of word table. pls help
.
- References:
- Formating first line of every cells in first column of word table.
- From: Sunil Pradhan
- Re: Formating first line of every cells in first column of word table.
- From: Graham Mayor
- Re: Formating first line of every cells in first column of word ta
- From: Sunil Pradhan
- Formating first line of every cells in first column of word table.
- Prev by Date: How2? Link blocks above and below to sort as one group?
- Next by Date: Re: How2? Link blocks above and below to sort as one group?
- Previous by thread: Re: Formating first line of every cells in first column of word ta
- Next by thread: Re: Formating first line of every cells in first column of word ta
- Index(es):
Relevant Pages
|