Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I want to be able to display the number that is so many spaces to the left
and right of the decimal point. Example: 1234.56 How do I put the second digit to the left of the decimal point (number 3) in a different cell in Excel? How do I put the first digit to the right of the decimal point (number 5) in a different cell in Excel? What function would I use? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=(MOD(A1,10^3)-MOD(A1,10^2))/(10^2) will get you the digit three to the left.
Adjust all three exponents up/down by one to move one digit left/right. "Robert Monks" wrote: I want to be able to display the number that is so many spaces to the left and right of the decimal point. Example: 1234.56 How do I put the second digit to the left of the decimal point (number 3) in a different cell in Excel? How do I put the first digit to the right of the decimal point (number 5) in a different cell in Excel? What function would I use? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If number is in A1, the second digit to the left of the decimal is extracted
with =MOD(INT(A1/10),10) If number is in A1, the first digit to the right of the decimal is extracted with =INT(MOD(A1*10,10)) -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "Robert Monks" <Robert wrote in message ... I want to be able to display the number that is so many spaces to the left and right of the decimal point. Example: 1234.56 How do I put the second digit to the left of the decimal point (number 3) in a different cell in Excel? How do I put the first digit to the right of the decimal point (number 5) in a different cell in Excel? What function would I use? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2 queries: Display last cell, and compare two lists | Excel Worksheet Functions | |||
MS Excel 2000 Cell Capacity and Data Display | Excel Discussion (Misc queries) | |||
have cell display the word balance when a equals the same amount a | Excel Discussion (Misc queries) | |||
How do I set a cell to "Empty" so that it does not display in a ch | Charts and Charting in Excel | |||
Display actual contents of cell | Excel Discussion (Misc queries) |