B
Baher
the text is set with a hanging indent at 1" or 1.5" depending on section but
because the bulleted info isnt wrapped to the next line (its got a return
instead) it doesnt stay in line with the heading for that...
bulleted/numbered lists get messed up so if you have the paragraph marks
showing in Word you can see that each line has a |P after it and they just
need to nudge line over…
Bold Heading: some text about heading
goes here...
• Bulleted list info.
• Bulleted list info.
• Bulleted list info.
o Bulleted list info at a lower level.
o Bulleted list info at a lower level.
here some code to start with...just not sure yet how to ID the text in Word
and pass it through this...
For i = 1 to Len(s)
s_new = s_new & Mid(s,i,1)
If (Mid(s,i,1) = vbCRLF)
s_new = s_new & vbTab
End If
Next
because the bulleted info isnt wrapped to the next line (its got a return
instead) it doesnt stay in line with the heading for that...
bulleted/numbered lists get messed up so if you have the paragraph marks
showing in Word you can see that each line has a |P after it and they just
need to nudge line over…
Bold Heading: some text about heading
goes here...
• Bulleted list info.
• Bulleted list info.
• Bulleted list info.
o Bulleted list info at a lower level.
o Bulleted list info at a lower level.
here some code to start with...just not sure yet how to ID the text in Word
and pass it through this...
For i = 1 to Len(s)
s_new = s_new & Mid(s,i,1)
If (Mid(s,i,1) = vbCRLF)
s_new = s_new & vbTab
End If
Next