How to separate one line of text to two line in radio button field?

Hi,I have a radio button with different selection of text, some line of text are two long, so when I pring the notes document, the text is truncated, is there any way to separate one line of text to two line? so I can print it properly? As if I just move it to next line by enter key, it creates another selection option in radio button field.

Thanks a lot for any input.

Subject: hide when printed?

The only sensible way I can think of to achieve this is to hide the radio button for printing, and unhide a computed-for-display field instead that can be formatted suitably.Then use a formula for your choices. I tried this

txt:= “This is a two-line radio button entry|This is a two-line” + @NewLine + “radio button entry”;

“This is one” : “This is another” : txt : “This is the fourth”

Then my computed-for-display field’s formula was set to the fieldname of the radio button. Note the use of | to provide the display value to the left, and the stored value to the right.

Hope this helps,

Phil