Link to home
Start Free TrialLog in
Avatar of SteveL13
SteveL13Flag for United States of America

asked on

How combine 5 test fields together separate with a comma and space

I have a form with 5 fields.  One or all 5 may have text data in them.  Then on the form I also have a field that I want to combined the data from the 5 (or less) field into separate with a comma and a space.

So if for example field 1 has "Green", field 2 has "Orange", and field 3 has "Purple", then the combined field would read...  "Green, Orange, Purple"

How can I do this so that the combined field is updated after each of the other fields are updated?
Avatar of Amit Kumar
Amit Kumar
Flag of India image

Create a query and add below formula in new field. It will give you result as you required

Color: [Field1] & " ," & [Field2] & " ," & [Field3]
ASKER CERTIFIED SOLUTION
Avatar of Dale Fye
Dale Fye
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial