Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying
to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Create a column (later to be hidden) next to the data u want to change. In
this new column, put your =IF(A1=1,3,(IF(A1=3,2,(IF(A1=2,3))))). This should give you the correct numbers. Then you can copy the column and paste specuial (values only) it in your original column. Hide your newly created column. You can next up to 7 if then statements...if more than than you will need to do VLookup or something different. -- -Kaman The IT dept people call before they call the real IT dept. "catspore" wrote: How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this:
=Lookup(A1,{1,2,3},{3,3,2}) or Enter =Sum(If(A1={1,2,3},{3,3,2})) or Enter =Vlookup(A1,{1,3;2,3;3,2},2,0) Enter Hope this helps. -- Santipong catspore เขียน: How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=MAX(A1,3)-(A1=3)
"catspore" wrote: How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
=Lookup(A1,{1,2,3},{3,3,2}) or =Vlookup(A1,{1,3;2,3;3,2},2,0) or =Sum(if(A1={1,2,3},{3,3,2})) Enter HTH -- Santipong catspore เขียน: How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try:
=Lookup(A1,{1,2,3},{3,3,2}) or =Vlookup(A1,{1,3;2,3;3,2},2,0) or =Sum(if(A1={1,2,3},{3,3,2})) Enter HTH -- Santipong catspore เขียน: How to replace numbers in a cell eg if 1 to 3, if 3 to 2, if 2 to 3. Trying to reverse score for questionnaire. Possible to create a formula instead of doing manually? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
can numbers be assigned to values, replacing values for numbers | Excel Discussion (Misc queries) | |||
Replacing specific numbers | Excel Discussion (Misc queries) | |||
Replacing a random string of 5 numbers | Excel Discussion (Misc queries) | |||
Help with replacing items within a cell | Excel Worksheet Functions | |||
using treater than and replacing numbers | Excel Worksheet Functions |