Line breaks in text boxes linked to cell

AmericanSeiko

New Member
Joined
Sep 16, 2013
Messages
21
Hi everyone,

I was wondering whether it's possible to insert line breaks into a text box's text linked via formula to a cell.

For example,

Cell A1: "Hello, pleased to meet you. I'd like to buy an apple"

text box: =A1 -> text box displays the following with no line breaks
[ Hello, pleased to meet you. I'd like to buy an apple. Thank you. ]

I'd like to force line breaks to make the text box display like this:

[ Hello, pleased to meet you.]
[ I'd like to buy an apple.]
[ Thank you.]

Is this possible? Unfortunately, I can't simply hit "enter" as one normally would. If not, I can define three distinct text boxes for each line, but doing so makes reformatting inefficient. Thank you in advance for your help! :)
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Code:
[COLOR=#333333]="Hello, pleased to meet you." & CHAR(10) & "I'd like to buy an apple." & CHAR(10) & "Thank you."[/COLOR]

char(10) is excel code for line break.
 
Upvote 0

Forum statistics

Threads
1,223,250
Messages
6,171,036
Members
452,374
Latest member
keccles

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top