carriage return in shapesheet function

M

mike

I'm concatenating several custom properties and then displaying them in a
Shape.Text by using a field. I'd like each separate entry to be on its own
line.
I've tried things like:
=prop.row1 & chr(13) & prop.row2
but I just get an error.
There "should" be a way to do this, right?
Thanks...
 
J

JuneTheSecond

Unfortunately, it seems impossible.
There might be left only one way of adjusting width of text block and
inserting some quantities of space character.
 
N

Nikolay Belyh

Are you talking about "insert field" command and "custom formula"?
In this case you should use CHAR(10) instead of Chr(13).

Like this:
=Prop.row_1&CHAR(10)&Prop.row_2

You cna find the full list of functions you can use in formulas in
Visio help (shape functions section)

Kind regards, Nikolay.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top