Help with Formula

  • Thread starter Thread starter cware
  • Start date Start date
C

cware

I have a column that each cell ends with the word "Total". I need to convert
that column to remove that word from each cell. If I need to add a column to
do that, that's fine, I just cannot figure out how. Can anyone help me on
this one?

Thanks
 
How about just selecting the column and using Edit|replace

What: Total (or spacebar total???)
with: (leave blank)
replace all
 
cware,

There are a couple ways to do this. If you are looking to just remove the
word "Total", do a simple Replace (Edit>Replace) For:Total To:<nothing>.

Or formulaically:
=TRIM(LEFT(A1,(LEN(A1)-5)))

Trim will remove any additional spaces.
 
Hi,

select the column then
Edit|Replace
Enter Total in the 'Find what' box and leave the other box blank
Click replace all

Mike
 
Hi

in an adjacent column
=--(TRIM(SUBSTITUTE(A1,"Total","")))
Copy down as required
 
Edit>Replace

What: Total

With: nothing

Replace all.


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top