PDA

View Full Version : Stuck on adding space to result of text calculation


jjacksonweb
09-13-2010, 05:10 PM
I have created the following calculation...

Concat(OwnerFirstname , OwnerLastname)

But in the field that creates the result of the calculation I get...

FirstnameLastname

When what i actually want is...

Firstname Lastname

With the space between.

How do i accomplish this?

I already tried the ' ' in several different places and it never works.

I just keep getting a TSB error screen when I run the software.



James

aussieokie
09-13-2010, 05:25 PM
James,
Had the same problem myself ages ago :eek:

Try
FirstName+(' ')+LastName

works for me every time :D

Cheers
Jim

jjacksonweb
09-14-2010, 12:40 AM
Thank you Jim.

JJ