Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 42
Default How can I give a numerical value to a radio button?

I am building an evaluation sheet in Excel and want to know how I can give a
numerical value to a radio button. For example, one of the question reads,
"The trainer spoke clearly". and the option buttons read: Stronly Agree,
Agree, Disagree, Strongly Disagree. I want to give the following values to
each answer option: Strongly Agree = 5, Agree = 4, Disagree = 2, Strongly
Disagree = 1 . My ultimate goal is to find the average score for all the
questions. Any assistance would be appreciated.
Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default How can I give a numerical value to a radio button?

You may want to look at this survey form from Debra Dalgleish's site:
http://contextures.com/xlForm01.html

trainer07 wrote:

I am building an evaluation sheet in Excel and want to know how I can give a
numerical value to a radio button. For example, one of the question reads,
"The trainer spoke clearly". and the option buttons read: Stronly Agree,
Agree, Disagree, Strongly Disagree. I want to give the following values to
each answer option: Strongly Agree = 5, Agree = 4, Disagree = 2, Strongly
Disagree = 1 . My ultimate goal is to find the average score for all the
questions. Any assistance would be appreciated.
Thanks!


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default How can I give a numerical value to a radio button?

Hi,

Those sort of surveys don't actually tell you what you want to know.
They tend to end up as a study of human nature. You will get lots
of 3's and plenty of 2's and 4's and a few 5's and 1's. Almost every
time your average will end up around 3 (maybe 2.5 to 3.5).
Despite what we all think of ourselves, in a group situation
we generally end up as sheep.

A far better way to assess your group is to use a lot of very precise
direct yes or no questions.

Did the trainer speak clearly? Yes No
Was the trainer clear for the "entire" presentation? Yes No
When fielding questions from the group did he repeat the question
clearly so that the entire group could hear it? Yes No
etc. etc.

You structure your questions so that a Yes is always positive
and a No is always negative. To analyse the results you just sum
the amount of Yes's in each survey and plot the results on any
of the myriad of charts that excel has to offer.

Jon Peltier has a huge selection to choose from here.
http://peltiertech.com/Excel/Charts/ChartIndex.html

HTH
Martin

"trainer07" wrote in message
...
I am building an evaluation sheet in Excel and want to know how I can give
a
numerical value to a radio button. For example, one of the question
reads,
"The trainer spoke clearly". and the option buttons read: Stronly Agree,
Agree, Disagree, Strongly Disagree. I want to give the following values
to
each answer option: Strongly Agree = 5, Agree = 4, Disagree = 2, Strongly
Disagree = 1 . My ultimate goal is to find the average score for all the
questions. Any assistance would be appreciated.
Thanks!



  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 168
Default How can I give a numerical value to a radio button?

P.S. I forgot to mention that you can also sum the amount of Yes's
for each question.

The quality of the result is reliant on the quality of the questions.
A well structured survey will provide the trainer with a very valuable
tool that will highlight exactly where he/she needs improvement
and also exactly where he/she has got it right.

HTH
Martin



"MartinW" wrote in message
...
Hi,

Those sort of surveys don't actually tell you what you want to know.
They tend to end up as a study of human nature. You will get lots
of 3's and plenty of 2's and 4's and a few 5's and 1's. Almost every
time your average will end up around 3 (maybe 2.5 to 3.5).
Despite what we all think of ourselves, in a group situation
we generally end up as sheep.

A far better way to assess your group is to use a lot of very precise
direct yes or no questions.

Did the trainer speak clearly? Yes No
Was the trainer clear for the "entire" presentation? Yes No
When fielding questions from the group did he repeat the question
clearly so that the entire group could hear it? Yes No
etc. etc.

You structure your questions so that a Yes is always positive
and a No is always negative. To analyse the results you just sum
the amount of Yes's in each survey and plot the results on any
of the myriad of charts that excel has to offer.

Jon Peltier has a huge selection to choose from here.
http://peltiertech.com/Excel/Charts/ChartIndex.html

HTH
Martin

"trainer07" wrote in message
...
I am building an evaluation sheet in Excel and want to know how I can give
a
numerical value to a radio button. For example, one of the question
reads,
"The trainer spoke clearly". and the option buttons read: Stronly
Agree,
Agree, Disagree, Strongly Disagree. I want to give the following values
to
each answer option: Strongly Agree = 5, Agree = 4, Disagree = 2,
Strongly
Disagree = 1 . My ultimate goal is to find the average score for all the
questions. Any assistance would be appreciated.
Thanks!





  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default How can I give a numerical value to a radio button?

Where is the value of 3? Anyway, to answer your question... I presume these
OptionButtons are grouped in some way (otherwise your user would be able to
select more than one at a time). Because only one OptionButton can be
selected at a time, just multiply each OptionButton's value (0 if not
selected, 1 if select) by its value and sum them up... the value returned
will be the OptionButton's value. Let's assume the OptionButton's are named
this way...

Strongly Agree button --- Opt1
Agree button ------------ Opt2
Disagree button --------- Opt3
Strongly Disagree ------- Opt4

Then the value the user selected can be found like this...

UsersValue = 5 * Opt1.Value + 4 * Opt2.Value + 2 * Opt3.Value + Opt4.Value

Remember... only one of the Opt{n}.Values will be 1 and the rest will be 0.

Rick


"trainer07" wrote in message
...
I am building an evaluation sheet in Excel and want to know how I can give
a
numerical value to a radio button. For example, one of the question
reads,
"The trainer spoke clearly". and the option buttons read: Stronly Agree,
Agree, Disagree, Strongly Disagree. I want to give the following values
to
each answer option: Strongly Agree = 5, Agree = 4, Disagree = 2, Strongly
Disagree = 1 . My ultimate goal is to find the average score for all the
questions. Any assistance would be appreciated.
Thanks!


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
radio button Chey Excel Discussion (Misc queries) 1 January 3rd 08 07:42 PM
How can I give text a numerical value in adjacent cell? CT1974 Excel Worksheet Functions 5 May 22nd 07 09:41 AM
Help with radio button Diana Excel Discussion (Misc queries) 1 July 17th 06 09:29 PM
How do I lock a radio button group if a N/A button is selected worry a lot Excel Discussion (Misc queries) 2 May 21st 05 08:33 PM
VBA: Disable Frame and Radio Buttons based on Another Radio Button Being True Mcasteel Excel Worksheet Functions 2 October 29th 04 07:06 PM


All times are GMT +1. The time now is 09:46 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"