Survey Question with Multiple Answers in Multiple Columns

cdubs34

New Member
Joined
Jul 26, 2011
Messages
34
Hello,

I have received a spreadsheet with survey results and many of the questions have multiple answers in multiple columns. For example:

RespondentWhere do you keep the product?
a@gmail.comHomeCar
b@gmail.comWork
c@gmail.comHomeCar
d@gmail.comRental Property

<tbody>
</tbody>

As you can see the formatting makes it a bit difficult to do quick pivot table etc analysis. Could you please provide any recommendations on how best/most efficiently to handle this? Should I just create a new column that combines the 4 columns of answers here so for example a@gmail.com's response would be HomeCar? Thank you.
 
Last edited:

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Pivot tables do not do well when you use non-numeric values in the Values field. If you convert the data to this (which could be done by code):

Code:
		Home	Work	Car	Rental Property
a@gmail.com	0.5		0.5	
b@gmail.com		1		
c@gmail.com	0.5		0.5	
d@gmail.com				1

You will be able to extract more data for those questions with multiple answers.
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,973
Members
448,933
Latest member
Bluedbw

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top