View Single Post
 
Old 01-05-2016, 05:23 AM
PRA007's Avatar
PRA007 PRA007 is offline Windows 7 64bit Office 2010 32bit
Competent Performer
 
Join Date: Dec 2014
Location: Ahmedabad, Gujrat, India
Posts: 145
PRA007 is on a distinguished road
Default

Both the macro worked just fine. Thank you very much.

What I wanted is this. Is It right approach?
Code:
                                With Tbl.Cell(i, 3).Range
                                    .End = .End - 1
                                    .Collapse wdCollapseEnd
                                    .Text = vbCr & "Abstract: "
                                    .Font.Bold = True
                                End With
                                With Tbl.Cell(i, 3).Range
                                    .End = .End - 1
                                    .Collapse wdCollapseEnd
                                    .Text = StrTxt
                                    .Font.Bold = False
                                End With
Reply With Quote