Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
How would I take this value in a single cell:
12345AB and create this value in two cells, as follows: 12345 AB Thanking you in advance! Mad Dog |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Is it always 5 characters followed by 2?
Data|Text to columns or you can use formulas =left(a1,5) =right(a1,2) Mad Dog wrote: How would I take this value in a single cell: 12345AB and create this value in two cells, as follows: 12345 AB Thanking you in advance! Mad Dog -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not always - but it is always numbers/txt. Sometimes the text part is not
there. "Dave Peterson" wrote: Is it always 5 characters followed by 2? Data|Text to columns or you can use formulas =left(a1,5) =right(a1,2) Mad Dog wrote: How would I take this value in a single cell: 12345AB and create this value in two cells, as follows: 12345 AB Thanking you in advance! Mad Dog -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Put this in B1:
=--LEFT(A1,MIN(MATCH(TRUE, ISERROR(-MID(A1&"x",ROW(INDIRECT("1:"&LEN(A1)+1)),1)),0))-1) This is an array formula. Hit ctrl-shift-enter instead of enter. If you do it correctly, excel will wrap curly brackets {} around your formula. (don't type them yourself.) If you want the stuff in column B to be text, then drop the -- at the beginning of the formula (the -- converts the text to numbers. and this in C1: =MID(A1,LEN(B1)+1,255) Mad Dog wrote: Not always - but it is always numbers/txt. Sometimes the text part is not there. "Dave Peterson" wrote: Is it always 5 characters followed by 2? Data|Text to columns or you can use formulas =left(a1,5) =right(a1,2) Mad Dog wrote: How would I take this value in a single cell: 12345AB and create this value in two cells, as follows: 12345 AB Thanking you in advance! Mad Dog -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Cell color based upon cell value | Excel Discussion (Misc queries) | |||
cell color index comparison | New Users to Excel | |||
Copy cell format to cell on another worksht and update automatical | Excel Worksheet Functions | |||
Input cell information | Excel Discussion (Misc queries) | |||
Transfering information to the next free cell in a column | Excel Discussion (Misc queries) |