Hi
Its been touched on in some of the archived posts, but I can't seem to get this to work.
I want to label some points using the contents of a single text field. I'm familiar with using vbnewline for doing this with seperate fields, its quite simple. But i'd like to be able to stack labels based on inserting a symbol of some description (e.g. '/' or '*') into the single field
E.g. :
"Started 2010 / under construction / still waiting on management approval" to look like this:
Started 2010
under construction
still waiting management approval
I found the following vbscript example in an archived thread:
Function FindLabel ( [myField] )
FindLabel = Replace( [myField], "/", vbCrLf)
End Function
But the expression editor says that using the Replace command is incorrect.
Help?
Thanks