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 6117 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hello all,

I need to calc field "Combined_ALL" that brings together the contents of 3 other text fields.

The only issue I have is that the calc field needs to place a carrige return only between the fields that actually have data in them.

I have tried to figure this out and have come up short.

Posted

Hello all,

I need to calc field "Combined_ALL" that brings together the contents of 3 other text fields.

The only issue I have is that the calc field needs to place a carrige return only between the fields that actually have data in them.

I have tried to figure this out and have come up short.

That's exactly what the List function does; but it is only available in 8.5+.

Posted (edited)

the simple calculation would look like this;

Field1 & "¶" & Field2 & "¶" & Field3

However, this would also give you double return for those fields that are empty.

Case ( not IsEmpty ( Field1) ; Field1 & "¶") &

Case ( not IsEmpty (Field2) ; Field2 & "¶" ) &

Case ( not IsEmpty (Field3) ; Field3)

HTH

Lee

Edited by Guest

This topic is 6117 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.