Bapak Posted September 19, 2011 Posted September 19, 2011 Have Fields FirstName and Surname.+ Name How to calc FirstName and Surname to = Name
doughemi Posted September 19, 2011 Posted September 19, 2011 If you mean that FirstName contains "John" and Surname contains "Smith" and you want Name to contain "John Smith": Name = FirstName & " " & Surname If you mean something else, please give an example.
Bapak Posted September 20, 2011 Author Posted September 20, 2011 Thanks.. that is what I mean...and this is my entry: Name = FirstName & " " & Surname But sorry to say, it is not happening. Please see attachment.
Ron Cates Posted September 20, 2011 Posted September 20, 2011 If this is a calculation field then the formula you would enter in the field calculation dialogue would just be; FirstName & " " & Surname not Name = FirstName & " " & Surname
Lee Smith Posted September 20, 2011 Posted September 20, 2011 I read "Name" as the name of the field, and not part of the defined calculation. Name (calculation, text) = FirstName & " " & Surname BTW, FileMaker would reject [Name = FirstName & " " & Surname] as a calculation I would change the names to make it clearer to something like NameFull (calculation, text) = NameFirst & " " & NameLast hth, Lee
Bapak Posted September 21, 2011 Author Posted September 21, 2011 I read "Name" as the name of the field, and not part of the defined calculation. Name (calculation, text) = FirstName & " " & Surname BTW, FileMaker would reject [Name = FirstName & " " & Surname] as a calculation I would change the names to make it clearer to something like NameFull (calculation, text) = NameFirst & " " & NameLast hth, Lee I read "Name" as the name of the field, and not part of the defined calculation. Name (calculation, text) = FirstName & " " & Surname BTW, FileMaker would reject [Name = FirstName & " " & Surname] as a calculation I would change the names to make it clearer to something like NameFull (calculation, text) = NameFirst & " " & NameLast hth, Lee Tried that Lee but... See attachments.
efen Posted September 21, 2011 Posted September 21, 2011 You are making this more complicated than it needs to be - see Ron Cates' answer above - all you need is NameFirst & " " & NameLast
Bapak Posted September 21, 2011 Author Posted September 21, 2011 You are making this more complicated than it needs to be - see Ron Cates' answer above - all you need is NameFirst & " " & NameLast You are so right... all done and working. Thanks all.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now