Standard Edit to Multiple Cells

J

jwksu

I am looking to use Excel in track printing in our office. I am able to get
all
the info needed exported into a spreadsheet, but I have one remaining glitch
when I need to sort the information. The project number column includes the
full
path to the project folder on our server so there is no way to sort by
project. But, there is the same number of characters before the project
number for every entry.

Is there a way to create a macro or a function that our billing
person can easily apply to the cells in the column that says " delete the
first 14 characters in this cell" or "ignore the first 14 characters when
reading this cell"? Any advice would be appreciated.

Thank you and Happy New Year.
 
R

RagDyeR

With data starting in A1, try this in B1:

=RIGHT(A1,LEN(A1)-14)

And copy down as needed.
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

I am looking to use Excel in track printing in our office. I am able to get
all
the info needed exported into a spreadsheet, but I have one remaining glitch
when I need to sort the information. The project number column includes the
full
path to the project folder on our server so there is no way to sort by
project. But, there is the same number of characters before the project
number for every entry.

Is there a way to create a macro or a function that our billing
person can easily apply to the cells in the column that says " delete the
first 14 characters in this cell" or "ignore the first 14 characters when
reading this cell"? Any advice would be appreciated.

Thank you and Happy New Year.
 
R

RagDyeR

And, with a single function call:

=MID(A1,15,255)
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================


With data starting in A1, try this in B1:

=RIGHT(A1,LEN(A1)-14)

And copy down as needed.
--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

I am looking to use Excel in track printing in our office. I am able to get
all
the info needed exported into a spreadsheet, but I have one remaining glitch
when I need to sort the information. The project number column includes the
full
path to the project folder on our server so there is no way to sort by
project. But, there is the same number of characters before the project
number for every entry.

Is there a way to create a macro or a function that our billing
person can easily apply to the cells in the column that says " delete the
first 14 characters in this cell" or "ignore the first 14 characters when
reading this cell"? Any advice would be appreciated.

Thank you and Happy New Year.
 
R

RagDyeR

Appreciate your feed-back ... BUT ... read my post to your *same* question
in the functions group.
 

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

Top