Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How can I display text and #s in a drop-down list, but insert only

I am creating a survey and each cell has a drop-down list that displays the
Likert scale from 1-5. I would like the drop down list to display the Likert
description in the drop-down, for example: 1-Strongly Disagree, 2-Disagree,
3-Neutral, and so on up to 5. But when the user selects one of the options, I
would like only the number to be inserted into the field because we are
averaging the scores.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 7,247
Default How can I display text and #s in a drop-down list, but insert only

If you know the text value, you can get it from the input list. E.g,

=OFFSET(FirstCell,LinkedCell-1,0,1,1)

where FirstCell is the first cell of the input list and LinkedCell is
the cell to which the combobox is linked (in the Properties window).

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 9 Feb 2009 15:07:02 -0800, JHartle
wrote:

I am creating a survey and each cell has a drop-down list that displays the
Likert scale from 1-5. I would like the drop down list to display the Likert
description in the drop-down, for example: 1-Strongly Disagree, 2-Disagree,
3-Neutral, and so on up to 5. But when the user selects one of the options, I
would like only the number to be inserted into the field because we are
averaging the scores.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How can I display text and #s in a drop-down list, but insert

I tried to do this by entering =OFFSET(a137,b3-1,2,3,4,5) but it didn't work.
Unfortunately I think i am too much of a novice to understand your advice. I
don't understand the linked cell. My likert scale is on a separate worksheet.
Should I create another named list on that worksheet?
There are five options for fixed text values for each cell in the worksheet
(all the cells in the worksheet have the same likert scale attached). I want
the person to select, for example, 1-Strongly Disagree and then I want the
cell to have the value 1.
Is there any way of telling the spreadsheet that 1-Strongly Disagree=1?

"Chip Pearson" wrote:

If you know the text value, you can get it from the input list. E.g,

=OFFSET(FirstCell,LinkedCell-1,0,1,1)

where FirstCell is the first cell of the input list and LinkedCell is
the cell to which the combobox is linked (in the Properties window).

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 9 Feb 2009 15:07:02 -0800, JHartle
wrote:

I am creating a survey and each cell has a drop-down list that displays the
Likert scale from 1-5. I would like the drop down list to display the Likert
description in the drop-down, for example: 1-Strongly Disagree, 2-Disagree,
3-Neutral, and so on up to 5. But when the user selects one of the options, I
would like only the number to be inserted into the field because we are
averaging the scores.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,389
Default How can I display text and #s in a drop-down list, but insert

Now we know what you tried. Now tell us what happened when you tried Chip's
formula. Don't change it with "2,3,4,5". Enter it the way he recommended.

Regards,
Fred.

"JHartle" wrote in message
...
I tried to do this by entering =OFFSET(a137,b3-1,2,3,4,5) but it didn't
work.
Unfortunately I think i am too much of a novice to understand your advice.
I
don't understand the linked cell. My likert scale is on a separate
worksheet.
Should I create another named list on that worksheet?
There are five options for fixed text values for each cell in the
worksheet
(all the cells in the worksheet have the same likert scale attached). I
want
the person to select, for example, 1-Strongly Disagree and then I want the
cell to have the value 1.
Is there any way of telling the spreadsheet that 1-Strongly Disagree=1?

"Chip Pearson" wrote:

If you know the text value, you can get it from the input list. E.g,

=OFFSET(FirstCell,LinkedCell-1,0,1,1)

where FirstCell is the first cell of the input list and LinkedCell is
the cell to which the combobox is linked (in the Properties window).

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 9 Feb 2009 15:07:02 -0800, JHartle
wrote:

I am creating a survey and each cell has a drop-down list that displays
the
Likert scale from 1-5. I would like the drop down list to display the
Likert
description in the drop-down, for example: 1-Strongly Disagree,
2-Disagree,
3-Neutral, and so on up to 5. But when the user selects one of the
options, I
would like only the number to be inserted into the field because we are
averaging the scores.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How can I display text and #s in a drop-down list, but insert

I did as you said and it said that my formula had a circular reference and
then that my formula had an error. this was the formula i entered:
=OFFSET(a137,b3-1,0,1,1)

"Fred Smith" wrote:

Now we know what you tried. Now tell us what happened when you tried Chip's
formula. Don't change it with "2,3,4,5". Enter it the way he recommended.

Regards,
Fred.

"JHartle" wrote in message
...
I tried to do this by entering =OFFSET(a137,b3-1,2,3,4,5) but it didn't
work.
Unfortunately I think i am too much of a novice to understand your advice.
I
don't understand the linked cell. My likert scale is on a separate
worksheet.
Should I create another named list on that worksheet?
There are five options for fixed text values for each cell in the
worksheet
(all the cells in the worksheet have the same likert scale attached). I
want
the person to select, for example, 1-Strongly Disagree and then I want the
cell to have the value 1.
Is there any way of telling the spreadsheet that 1-Strongly Disagree=1?

"Chip Pearson" wrote:

If you know the text value, you can get it from the input list. E.g,

=OFFSET(FirstCell,LinkedCell-1,0,1,1)

where FirstCell is the first cell of the input list and LinkedCell is
the cell to which the combobox is linked (in the Properties window).

Cordially,
Chip Pearson
Microsoft Most Valuable Professional
Excel Product Group, 1998 - 2009
Pearson Software Consulting, LLC
www.cpearson.com
(email on web site)

On Mon, 9 Feb 2009 15:07:02 -0800, JHartle
wrote:

I am creating a survey and each cell has a drop-down list that displays
the
Likert scale from 1-5. I would like the drop down list to display the
Likert
description in the drop-down, for example: 1-Strongly Disagree,
2-Disagree,
3-Neutral, and so on up to 5. But when the user selects one of the
options, I
would like only the number to be inserted into the field because we are
averaging the scores.





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
How to get drop-down list to display text and #s but insert only # JHartle Excel Discussion (Misc queries) 1 February 10th 09 11:04 AM
How to get drop-down list to display text and #s but insert only # JHartle Excel Discussion (Misc queries) 0 February 9th 09 11:06 PM
Drop down List - insert row? DianneB Excel Discussion (Misc queries) 3 November 4th 08 06:07 PM
display text depending on coice from drop down list Calle Excel Discussion (Misc queries) 11 May 28th 06 09:11 PM
How do I insert a drop down list in a cell using Phil Excel Worksheet Functions 2 May 8th 05 08:17 PM


All times are GMT +1. The time now is 01:19 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"