Hi,

I have a docx-document that has fields like this
Listed here are our customers
Customer1
Customer2
Customer3
Customer4
Customer5
And that's the customers we have
The field formula is (on pseudolevel): IF { {DOCPROPERTY "Customer1"} <> "Error! Unknown document property name." {DOCPROPERTY "Customer1"} " ""}
which basically works, but I don't like the idea that with one customer it looks like this:
Listed here are our customers
Customer1




And that's the customers we have
because it has disturbing empty lines, and it should instead look like:
Listed here are our customers
Customer1
And that's the customers we have
So is there a way to give on that else-branch a command of backspace i.e. delete the entire line if no value exists?