I'm having trouble generating a document that would place text made by a formula on two lines and retain the font style.
I need to have 2 documents and I'm using two pdfs.
- One contains headshots, names and credentials and generates fine from a column in the helper sheet that combines first and last names from the source sheet with this formula:
=INDEX({Name}, MATCH("PGY3 02", {Role}, 0))
cell data looks like this
this document generates fine with the text bolded (it's set in the PDF fields.)
- 2. The second document needs to have headshots, names, credentials, and pagers on the second line. In the helper sheet they are combined with this formula:
=INDEX({Name}, MATCH("PGY3 02", {Role}, 0)) + CHAR(10) + INDEX({Pager}, MATCH([PGY3 Resident 2 Name]@row, {Name}, 0))
and the cells look fine and like so:
However, when i generate a document, it doesn't put a pager # on a next line and loses the boldness. On the left, this is how it generates, and on the right - I manually typed in the preview mode and the font style should be bold and stays bold.
I need the pagers be on their own separate lines and the text to be bold. Any ideas would be much appreciated!