Similar Fields to show in a single column of a View

There are several fields with similar names (ie, email, email_1, email_2, email_3) that I want to view individually with the other similar form information such as:

email - last name - first name

email_1 - last name - first name

email_2 - last name - first name

Can you help?

Thanks,

Heidi

Subject: Similar Fields to show in a single column of a View

are these all based on the same form?

Subject: RE: Similar Fields to show in a single column of a View

Yes, the fields are all on the same form.

Subject: RE: Similar Fields to show in a single column of a View

jsut so I understand the issue, you want to show one of 3 different fields in the same column

can you not just use a logical formula?

something like

("email = " + email + ", " + last name + " " + first name) & ("email_1 = " + email_1 + ", " + last name + " " + first name) & ("email_2 = " + email_2 + ", " + last name + " " + first name)

if you make the column to show multiple values, it should show all of them