Hi,
Been struggling with this for a few days so decided I need some assistance
I have my access database and I am generating a word document based on data in my database, what I need to do is format a certain word in a table cell to be bold - I can't figure this out :/
I am trying to use the .Characters options where I can specify start character and length but I can't work out how to use it!
Can anyone shed any light? Currently the line that write the text looks like this...
What I am trying to do is bold the hrec!Parent data :banghead:
Thanks!
Been struggling with this for a few days so decided I need some assistance
I have my access database and I am generating a word document based on data in my database, what I need to do is format a certain word in a table cell to be bold - I can't figure this out :/
I am trying to use the .Characters options where I can specify start character and length but I can't work out how to use it!
Can anyone shed any light? Currently the line that write the text looks like this...
Code:
.ActiveDocument.Tables(1).Cell(row, 1).Select
If IsNull(hrec!Parent) Then
.Selection.Text = hrec!RCI_Step & vbCrLf & TrimNull(hrec!TTS_Team) & " To Sign"
Else
.Selection.Text = hrec!Parent & vbCrLf & hrec!RCI_Step & vbCrLf & TrimNull(hrec!TTS_Team) & " To Sign"
End If
What I am trying to do is bold the hrec!Parent data :banghead:
Thanks!