Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

formatting field that has calculation


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

Recommended Posts

Posted

Hsppy New Year and thanks all for your help, especially yesterday!

I have a field that has a calculation on it that looks at a field and then copies the contents into the field so that I will hopefully be able to use it for printing labels. The calc code I used was:

If (AF1L1P1 = "YES" ; AF1L1N1)&

If (AF1L1P2 = "YES" ; AF1L1N2)&

If (AF1L1P3 = "YES" ; AF1L1N3)

etc...

The problem is all the text copies but leaves no spaces inbetween.

I would like a line break inbetween the text.

Is this possible?

Thanks all

Posted (edited)

If (AF1L1P1 = "YES" ; AF1L1N1)& "¶" &

If (AF1L1P2 = "YES" ; AF1L1N2)& "¶" &

If (AF1L1P3 = "YES" ; AF1L1N3)

Edited by Guest
Posted

Case (

AF1L1P1 = "yes";AF1L1N1 & "¶";"") &

Case (

AF1L1P2= "yes";AF1L1N2 & "¶";"") &

Case (

AF1L1P3 = "yes";AF1L1N3 & "¶";"")

to remove any space if one is not "yes"

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