Celeb Glow
news | March 01, 2026

Can I hide a whole paragraph using Conditional Text Automation in Microsoft Word

I have a MS Word document shared between different projects. Some paragraphs only apply to some specific projects, so I'd like to hide them using custom fields.

I found this interesting page explaing how to insert conditional text. However, this makes it possible to hide a small piece of text, in my case, it's a whole paragraph I'd like to hide, including possible tables, pictures...

I found to way to transform

IF "<< Matter.CustomField.Pleading >>" = "guilty" "The defendant pleads "guilty"." "The defendant pleads "not guilty"."

into

IF "<< Matter.CustomField.Pleading >>" = "guilty"
"The defendant pleads "guilty"."
including images, tables
ELSE
"The defendant pleads "not guilty"."
including images, tables
ENDIF

is it doable (Note that I'd like to avoid using macros, if possible)

2

1 Answer

It isn't obvious, but you're able to embed images and charts within the IF field in Word itself! For example:

IF "[Your Field]" = "guilty" "[text if guilty][image][chart][text]" "[text if not guilty][image][chart][text]"

That will evaluate [Your Field], and if it equals "guilty" it will display all the text, images, whatever is between the following quotes. If it doesn't equal guilty it'll show whatever text and images is between the final quotes.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy