Windows Version: 7 Enterprise 32-bit
Office Version: 2010 32-bit
Hello All,
I am trying to generate a report to export to the rtf format such that the rtf looks exactly like the highlighted portion of the report in the picture below.

The code to generate the highlighted textbox looks like this
Code:
="<u>" & [project Name] & "</u> (" & [Funding ID Classification] & ":" & [9 Digit Funding ID] & " PeopleSoft Approved Amount: " & IIf(IsNull([Approved Amount]),"",IIf(Abs([Approved Amount])>1000000,FormatCurrency([Approved Amount]/1000000,1) & "MM",IIf(Abs([Approved Amount])>1000,FormatCurrency([Approved Amount]/1000,1) & "K",FormatCurrency([Approved Amount],0)))) & ")"
The problem I am encountering is that word/rtf file is not picking up the html code that underlines a portion of the text box
And so I get this

The only alternative I can think of to make this work correctly like in the first picture is to create two textboxes one which contains the underlined "Project Name" and the other that contains the rest of the code as stated above.

The problem is it cuts off the projects name off as shown below.

I have tried using the "Can Grow" feature but it only allows the project name to extend down instead of pushing the other textbox to the right

I've tried looking for the vertical/horizontal anchoring but that is only allowed in form view. I also considered a vba script to go into rtf file and underline the components that belong to an array of the project names but if any of the projects names are mentioned in the description or status it will get underlined.
Thank You for your help.
Richard