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
Don Guillett - 01 Feb 2008 19:17 GMT
try selecting the column header>edit>replace>Ontime:, leave blank

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
>I have a spreadsheet with 10,000 rows with this information;
> Rows look like this,
[quoted text clipped - 11 lines]
> I just copy the percentage part to another cell?
> Please help
CLR - 01 Feb 2008 19:28 GMT
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
> I have a spreadsheet with 10,000 rows with this information;
> Rows look like this,
[quoted text clipped - 9 lines]
> I just copy the percentage part to another cell?
> Please help
Gary''s Student - 01 Feb 2008 19:28 GMT
Select the cells and then:
Edit > Replace
replacewhat: Ontime:
leave replacewith blank

Signature
Gary''s Student - gsnu200767
> I have a spreadsheet with 10,000 rows with this information;
> Rows look like this,
[quoted text clipped - 9 lines]
> I just copy the percentage part to another cell?
> Please help
Francis - 01 Feb 2008 19:58 GMT
that worked, thank you very much
> Select the cells and then:
>
[quoted text clipped - 15 lines]
> > I just copy the percentage part to another cell?
> > Please help
Don Guillett - 01 Feb 2008 19:29 GMT
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

Signature
Don Guillett
Microsoft MVP Excel
SalesAid Software
dguillett1@austin.rr.com
>I have a spreadsheet with 10,000 rows with this information;
> Rows look like this,
[quoted text clipped - 11 lines]
> I just copy the percentage part to another cell?
> Please help