Survey Response - Listing responders, not counting number of responses

tmaxwell83

New Member
Joined
Dec 15, 2017
Messages
2
Hello,

Long time lurker, first time poster here.

I'm trying to create a data management system and having trouble with this one last forumla – which is the difference between me being able to sleep at night and staying up ripping my hair out.


The below screenshot is a crude replication of what I want to do.

Capture.png


On the front end, the respondents will give their responses, but on the back end I want to see who gave what response and add that data to a separate table.

If anybody can help I would be extremely grateful.

Thanks,

Tim
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Assuming there are only 3 possible responses and the headings are already in F2:H2, then :

Code:
Dim rng As Range
Set rng = Range([E3], Cells(Rows.Count, "B").End(xlUp)(1, 6))
Range([E3], Cells(Rows.Count, "G")).ClearContents
Application.ScreenUpdating = False
With rng
    .Formula = "=IF($C3=E$2,$B3,#N/A)"
    .Value = .Value
    .SpecialCells(xlCellTypeConstants, 16).Delete Shift:=xlUp
End With
Application.ScreenUpdating = True
 
Upvote 0

Forum statistics

Threads
1,214,919
Messages
6,122,260
Members
449,075
Latest member
staticfluids

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