Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() I have a drop down list of 7 phrases. How can I assign a value(1-7) on each list so it will reflect to next cell? Lets say the dropdown is in B2 and I want its value in C2. Thanks. -- cardingtr ------------------------------------------------------------------------ cardingtr's Profile: http://www.excelforum.com/member.php...o&userid=27027 View this thread: http://www.excelforum.com/showthread...hreadid=513899 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
If the phrases are standard and do not change, then use a simple "if"statement If(B2="XXXX",1,if(b2="ÿyy",2,etc) Hope this helps regards DavidC "cardingtr" wrote: I have a drop down list of 7 phrases. How can I assign a value(1-7) on each list so it will reflect to next cell? Lets say the dropdown is in B2 and I want its value in C2. Thanks. -- cardingtr ------------------------------------------------------------------------ cardingtr's Profile: http://www.excelforum.com/member.php...o&userid=27027 View this thread: http://www.excelforum.com/showthread...hreadid=513899 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=(B2="first")*1+(B2="second")*2+(B2="third")*3 and continue for as many as
you like -- Gary's Student "cardingtr" wrote: I have a drop down list of 7 phrases. How can I assign a value(1-7) on each list so it will reflect to next cell? Lets say the dropdown is in B2 and I want its value in C2. Thanks. -- cardingtr ------------------------------------------------------------------------ cardingtr's Profile: http://www.excelforum.com/member.php...o&userid=27027 View this thread: http://www.excelforum.com/showthread...hreadid=513899 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Try something like this: For a text value (or blank) in A1 B1: =MATCH(A1&"",{"","aaa","bbb","ccc","ddd","eee","ff f","ggg"},0)-1 Does that help? Regards, Ron -- Ron Coderre ------------------------------------------------------------------------ Ron Coderre's Profile: http://www.excelforum.com/member.php...o&userid=21419 View this thread: http://www.excelforum.com/showthread...hreadid=513899 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks for all your suggestions. All worked. I just have to tweak it a little. -- cardingtr ------------------------------------------------------------------------ cardingtr's Profile: http://www.excelforum.com/member.php...o&userid=27027 View this thread: http://www.excelforum.com/showthread...hreadid=513899 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Intervals of 2 Consecutive Values in same Row and Return Count across Row | Excel Worksheet Functions | |||
I Need a formula to evaluate a cell with + or - values | Excel Worksheet Functions | |||
Return Range of Numerical Values in Single Column based on Frequency Percentage | Excel Worksheet Functions | |||
View of x-axis values | Charts and Charting in Excel | |||
#N/A Values : Returned by Formulas vs Entered Manually | Charts and Charting in Excel |