Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a spreadsheet with 10,000 rows with this information;
Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
try selecting the column headereditreplaceOntime:, leave blank
-- Don Guillett Microsoft MVP Excel SalesAid Software "Francis" wrote in message ... I have a spreadsheet with 10,000 rows with this information; Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Data TextToColumns using a colon as the delimiter, will place the
percentages in the next column to the right...........if that's a help Vaya con Dios, Chuck, CABGx3 "Francis" wrote: I have a spreadsheet with 10,000 rows with this information; Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Select the cells and then:
Edit Replace replacewhat: Ontime: leave replacewith blank -- Gary''s Student - gsnu200767 "Francis" wrote: I have a spreadsheet with 10,000 rows with this information; Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
You may like this even better
Sub replacewords() Set rng = Range("d8:d12") rng.Replace "Ontime:", "" For Each c In rng c.Value = Right(c, Len(c) - 3) Next End Sub -- Don Guillett Microsoft MVP Excel SalesAid Software "Francis" wrote in message ... I have a spreadsheet with 10,000 rows with this information; Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
that worked, thank you very much
"Gary''s Student" wrote: Select the cells and then: Edit Replace replacewhat: Ontime: leave replacewith blank -- Gary''s Student - gsnu200767 "Francis" wrote: I have a spreadsheet with 10,000 rows with this information; Rows look like this, R1 Ontime: 100.00% R2 711 *OEM1676EN R3 Tot R4 Ontime: 92.00% R5 129 D317002 I need to find all rows that contain "Ontime:" and remove the word "Ontime:" to leave the percentage in that cell only. This is all in one column. Or, can I just copy the percentage part to another cell? Please help |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why does it take so long to delete a part of table? | Excel Discussion (Misc queries) | |||
delete part of text from a cell | Excel Worksheet Functions | |||
How do I delete only part of the data in a row of cells? | Excel Worksheet Functions | |||
How do I delete part of a text string in every cell it appears in | Excel Discussion (Misc queries) | |||
Delete part of a formula | Excel Discussion (Misc queries) |