View Single Post
 
Old 02-07-2024, 08:09 AM
Italophile Italophile is offline Windows 11 Office 2021
Expert
 
Join Date: Mar 2022
Posts: 555
Italophile is just really niceItalophile is just really niceItalophile is just really niceItalophile is just really nice
Default

Quote:
Originally Posted by stevenjohnson View Post
As for the labels and whatnot inside the gray caption cell, mine comes out as attached.

How do I go from

"Figure 1Comment:"

to

"Figure 1
Comment: "

(basically putting the "Comment: " line under the "Figure" line).

My macro line for that is currently set up as:

Label:="Figure", Title:="Comment: ", _
You just need to add a carriage return:
Code:
Label:="Figure", Title:=vbCr & "Comment: "
Quote:
Originally Posted by stevenjohnson View Post

Also when you mentioned for the font style "Simply modify the Caption style in the template you use for this document.", it went completely over my head

I know it seems very elementary but this is coming from someone with absolutely 0 background on these things!
Display the Styles pane (Alt+Ctrl+Shift+S), locate the Caption style, right click and select modify.
Reply With Quote