delete a keyword from cells

G

Gary''s Student

Say the cells are in column A, in an un-used column enter:

=SUBSTITUTE(A1,"Total","") and copy down

You could also use a macro to do the same thing "in place"
 
D

Dave Peterson

Select the range to fix
Edit|replace
what: Total
with: (leave blank)
replace all

And I bet you want a space character in front of that Total string.
 
Top