Forum Discussion
KenK1110
Aug 01, 2025Copper Contributor
Word 365 Hyphenation at Bottom of Page
We have a client that prepares their content using a Word template and fonts we've developed. They work at getting the justification they think is optimal. We then take the files and paginate them in...
- Aug 05, 2025
To set this option in VBA, for the active document, use the following line of code:
ActiveDocument.Compatibility(wdAllowHyphenationAtTrackBottom) = True
Stefan_Blom
Aug 05, 2025MVP
To set this option in VBA, for the active document, use the following line of code:
ActiveDocument.Compatibility(wdAllowHyphenationAtTrackBottom) = True
KenK1110
Aug 05, 2025Copper Contributor
Oy-vey. I saw wdAllowHyphenationAtTrackBottom, wasn't immediately sure how to use it and assumed it was associated with a document in compatibility mode. 🤦 Thank you again, Stefan.
- Stefan_BlomAug 05, 2025MVP
You are welcome. :-)