September 19, 201114 yr Have Fields FirstName and Surname.+ Name How to calc FirstName and Surname to = Name
September 19, 201114 yr 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.
September 20, 201114 yr Author 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.
September 20, 201114 yr 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
September 20, 201114 yr 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
September 21, 201114 yr Author 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.
September 21, 201114 yr You are making this more complicated than it needs to be - see Ron Cates' answer above - all you need is NameFirst & " " & NameLast
September 21, 201114 yr Author 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.
Create an account or sign in to comment