Try to stick with Format(). It's really powerful:
Format("{{{0};{1};{2}}}", x, y, z)
you can add as many arguments as you like behind the formatting
string, and you can re-use the same value over and over again. It's
also possible to add specific formatting tags, such as rounding, or
specific notations.
--
David Rutten
[email protected]
Robert McNeel & Associates
On Apr 22, 10:57 pm, BrentWatanabe <[email protected]> wrote:
> perfect!
>
> On Apr 22, 3:57 pm, visose <[email protected]> wrote:
>
> > You can also use string syntax in the expression component:
> > "{"&x&";"&y&";"&z&"}"
>
> > On Apr 22, 10:34 pm, BrentWatanabe <[email protected]> wrote:
>
> > > I'm having a brain fart here.
>
> > > how would i get an output in the format {0;0;0}?
>
> > > Any help is appreciated. I'm trying to list branches in a data tree
> > > without having to type it in. I saw a previous post with only one
> > > branch example...but I'm pretty sure I need to use the Format()
> > > function to get what i want. But how is what's killing me.