You are viewing limited content. For full access, please sign in.

Question

Question

Forms Dynamic Fields?

asked on April 4, 2017 Show version history

Can you configure a LF Form to utilize dynamic fields in the following manner?

 

2 Fields:

ACCOUNT#

CARRIER (List field containing TRAIN, PLANE, TRUCK)

 

When TRAIN is selected within the form, I would like to dynamically assign field ACCOUNT# with the value 5000 (would like the next ACCOUNT# to increment one to 5001, etc)

When PLANE is selected within the form, I would like to dynamically assign field ACCOUNT# with the value 6000 (would like the next ACCOUNT# to increment one to 6001, etc)

When TRUCK is selected within the form, I would like to dynamically assign field ACCOUNT# with the value 7000 (would like the next ACCOUNT# to increment one to 7001, etc)

Thanks in advance.

 

0 0

Replies

replied on April 7, 2017 Show version history

If you want to assign value to field based on a radio button field, you could set calculation on the field like this:

=IF(CARRIER="TRAIN", "5000", IF(CARRIER="PLANE", "6000", IF(CARRIER="TRUCK", "7000", "")))

But I don't understand what your "next ACCOUNT#" means. Are you using multiple forms on one process or is the field inside a collection/table?

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.