Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 4275 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Ok, Im really lost..... I'm trying to understand why when I concatenate multiple fields into one single field using a calculation field, The field data on my layout doesn't show just a single line of text...

 

 

Here's my Calculation Field:

 

TextA &" "& B::TextB &" " & C::TextC

 

 

and a REAL simple Related DB is Attached to review

 

Thank You

 

-sr

 

 

Relationships.fmp12.zip

Posted

because you are concatenating everything into one long string.  If you want multiple lines you need to use the return character (pill-crow) instead of a space between the values.

Posted

Text A has a return in the text in the field, so naturally it will be in the concatenated field. If your data may have extra returns embedded, you will have to substitute for the returns in your calculation:

 

Substitute(TextA &" "& B::TextB &" " & C::TextC; ¶; "")

Posted

Take a look at the Trim4() custom function, on Brian Dunning's web site. I's great for stripping off all leading and trailing white space from text.

This topic is 4275 days old. Please don't post here. Open a new topic instead.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.