Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After performing a series of calculations on a column of numbers in excel
(2002), I need to change the last digit in each answer to 9. Is there a function or formula that will help me do this? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
see if this help:
=LEFT(A1,LEN(A1)-1)&"9" nikki "Mulina" wrote: After performing a series of calculations on a column of numbers in excel (2002), I need to change the last digit in each answer to 9. Is there a function or formula that will help me do this? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
this might work better. the other one gives awrong answer if you have a whole
number. put your number in A1. =IF(ISERROR(SEARCH(".",A1,1)),A1,LEFT(A1,LEN(A1)-1)&"9") "Nikki" wrote: see if this help: =LEFT(A1,LEN(A1)-1)&"9" nikki "Mulina" wrote: After performing a series of calculations on a column of numbers in excel (2002), I need to change the last digit in each answer to 9. Is there a function or formula that will help me do this? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If they are whole numbers:
=int(a1/10)*10+9 Mulina wrote: After performing a series of calculations on a column of numbers in excel (2002), I need to change the last digit in each answer to 9. Is there a function or formula that will help me do this? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel will not change cell border colours | Excel Discussion (Misc queries) | |||
Possible Lookup Table | Excel Worksheet Functions | |||
Copy cell format to cell on another worksht and update automatical | Excel Worksheet Functions | |||
How Do I change the background color of a cell in microsoft excel. | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions |