Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I am trying to take 3 cells and merge the information into one cell while
changing the formatting. enter 23, 45, 670 into 3 cells. Have a return of 023-045-670 in one cell. I need to use this # as if it were 23045670 and be able to sort and add to it. I know how to mege the cell it's the return of 023 from 23 that seems most problematic. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you want the number including dashes (with original numbers in A1,B1, and
C1): =TEXT(A1,"000")&"-"&TEXT(B1,"000")&"-"&TEXT(C1,"000") Without dashes: =TEXT(A1,"000")&TEXT(B1,"000")&TEXT(C1,"000") "FRISBIE RGW" wrote: I am trying to take 3 cells and merge the information into one cell while changing the formatting. enter 23, 45, 670 into 3 cells. Have a return of 023-045-670 in one cell. I need to use this # as if it were 23045670 and be able to sort and add to it. I know how to mege the cell it's the return of 023 from 23 that seems most problematic. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=text(cell1,"000")&"-"&text(cell2,"000")&"-"&text(cell3,"000")
This will be a text value. You can use it as a numeric value by =VALUE(SUBSTITUTE(text value,"-","")) "FRISBIE RGW" wrote: I am trying to take 3 cells and merge the information into one cell while changing the formatting. enter 23, 45, 670 into 3 cells. Have a return of 023-045-670 in one cell. I need to use this # as if it were 23045670 and be able to sort and add to it. I know how to mege the cell it's the return of 023 from 23 that seems most problematic. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excell-Protecting sheet formatting | Excel Worksheet Functions | |||
Excell formatting | Excel Discussion (Misc queries) | |||
Number Entry in Excell | Excel Discussion (Misc queries) | |||
How can I link a cell in Excell and keep the same formatting? | Excel Worksheet Functions | |||
How do I get excell to indicate when a number is out of a set ran. | Excel Worksheet Functions |