Survey / Radio buttons

M

MikeG

I have created a survey that has about 40 categories with a 1 - 10 scale
each. I was able to setup the radio buttons and group boxes for each category
so someone can select the ranking. My problem is I need to know how to setup
the form so I can distribute it to 60+ people, have them rank the categories
and then somehow get the totals for each category compliled into another
form. Any help would be appreciated. Please let me know if more info is
needed...thanks
 
O

OssieMac

Hi Mike,

The first question that comes to mind is how do you intend to distribute the
survey questionaire. Will you be simply sending each person a copy of the
spreadsheet which they will complete and return or have you got something
more elaborate in mind?

Regards,

OssieMac
 
M

MikeG

Right I just want to be able to send a copy to each individual, have them
complete and return it. I would then need to tabulate the results somehow...
 
O

OssieMac

It’s a bit labour intensive if you do it manually but here is a suggestion of
how you might go about it.

Create links from all the radio buttons to another sheet in the workbook so
that all the links are in Column A. The first group of 10 buttons to have
links in cells A1 to A10, the second group in cells A11 to A20, the third in
A21 to A30 etc. If you have 40 questions and 10 buttons each then you will
have some 400 to do.

How you go about setting the links depends on whether you used radio buttons
from the Control Box Toolbar or the Radio buttons from the Forms toolbar. If
you used the Control Toolbar then you have to click on the Design Mode icon
and then right click the radio button, select properties and then manually
enter the link address against LinkedCell. Example of the syntax is Sheet2!A1
..(You do not have to close this properties dialog box each time, simply click
on the next button). The linked cells will show TRUE for selected and FALSE
for not selected.

If you used the buttons from the Forms Toolbar then right click on the
button and select format control and then select the linked cell. The linked
cells for this is 1 for selected and 0 for not selected.

When you get the workbooks back, create a new folder to save them and save
them as something like Results01, Results02, Results03 etc. Use the zero
because it will keep them properly indexed.

Create a new workbook in the same folder and name it Summary or something.
Select Tools, Options, General tab and check the R1C1 reference style so that
your columns will then be numeric instead of alpha.

Open Results01 and copy the column of links and paste it into column 1 of
the Summary. Close Results01 and open Results02 and copy the column and paste
it into column 2 of summary, Results 03 to column 3 etc until you have copied
all. You will see why I suggested the R1C1 reference style because the column
numbers should match the Results workbook numbers and you shouldn’t loose
your place.

When finished copying the data, select Tools, Options, General tab and
uncheck the R1C1 reference style because it will make it easier for you to
understand the formula I am going to use.

Go to the far right of the data. (say column 61 if you have 60 columns of
data). If you used the Control Toolbox buttons and the results are TRUE and
FALSE then in the cell of the first row insert the following formula:-

=COUNTIF(A1:BH1,TRUE)

You will have to adjust the BH1 to match the last cell of data in the row.

If you used the Forms Toolbar and the results are 1 and 0 then simply sum
the row.

Copy this formula to the bottom of your data. You will now have the totals
for each radio button which was selected. You should be able to handle them
from here.

I did say it is labour intensive but writing these instructions have been
also. However, I suppose if it gets you over the problem then that is what
counts.

Just as a side issue. On the initial sheet you create, if you have TRUE
/FALSE from the Control Toolbox buttons then copy a FALSE cell and paste it
over all the linked cells and you will start off with all the buttons blank.
Same if you have 1’s and 0’s for forms toolbar buttons, Paste 0’s over all
the links.

Regards,

OssieMac
 
M

MikeG

I am very appreciative of your help. I am going to go over these instructions
and try it out. I'll let you know how it turned out. Once again, thanks
 
O

OssieMac

After replying to your question, I had a look at automating the creation of
the radio buttons and the links. It works but on my Pentium 4 with 1GB mem it
just about grinds to a halt creating 400 radio buttons and also setting the
links. I am not sure that it is the best way to go about it.
I don't know what you are like with VBA but I would consider having the user
check cells on the spreadsheet and using on change events to control it so
they could only check one in the row of 10. You could set borders around each
of the cells and then turn off the excel grid to show a blank sheet other
than the questions and the cells with borders. (Haven't actually tried this.)

Regards,

OssieMac
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top