Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rob Rob is offline
external usenet poster
 
Posts: 718
Default replace all function - excel 2003

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default replace all function - excel 2003

Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.

1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.


On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default replace all function - excel 2003

Just a warning.

Using '= changes the .prefixcharacter setting and can cause trouble later.

I'd replace = with $$$$$=
and then edit|replace to change it back to = after the changes.

And I'd open that sending workbook, too. I bet it would calculate faster--and
maybe stop the lockup????

Lori wrote:

Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.

1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.

On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default replace all function - excel 2003

I suspect there are multiple sending workbooks as it is the folder
name that is being replaced, and if so opening all workbooks within
that folder could be troublesome.

Thanks for pointing out the prefix character steeing, I hadn't noticed
that this was a persistent setting before. I can't see it being a
major issue here though and you could get round it by outputting to
another column column in the third step of text to columns and
deleting the existing one. I also meant to add that you may need to do
an edit links update.



On 24 May, 16:12, Dave Peterson wrote:
Just a warning.

Using '= changes the .prefixcharacter setting and can cause trouble later.

I'd replace = with $$$$$=
and then edit|replace to change it back to = after the changes.

And I'd open that sending workbook, too. I bet it would calculate faster--and
maybe stop the lockup????





Lori wrote:

Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.


1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.


On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?


--

Dave Peterson- Hide quoted text -

- Show quoted text -



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default replace all function - excel 2003

There are ways to work around the .prefixcharacter problem. But I find it
easier to just not cause it.

And maybe there are multiple sending workbooks--if that number is small, I'd
still try to open them all at once. (Small purposely left vague <vbg.)

Lori wrote:

I suspect there are multiple sending workbooks as it is the folder
name that is being replaced, and if so opening all workbooks within
that folder could be troublesome.

Thanks for pointing out the prefix character steeing, I hadn't noticed
that this was a persistent setting before. I can't see it being a
major issue here though and you could get round it by outputting to
another column column in the third step of text to columns and
deleting the existing one. I also meant to add that you may need to do
an edit links update.

On 24 May, 16:12, Dave Peterson wrote:
Just a warning.

Using '= changes the .prefixcharacter setting and can cause trouble later.

I'd replace = with $$$$$=
and then edit|replace to change it back to = after the changes.

And I'd open that sending workbook, too. I bet it would calculate faster--and
maybe stop the lockup????





Lori wrote:

Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.


1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.


On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?


--

Dave Peterson- Hide quoted text -

- Show quoted text -


--

Dave Peterson


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default replace all function - excel 2003

True, it seems there were only a handful of links at most and simple
is almost always best as here <g.

FWIW using ["=] instead of ['=] would avoid the prefix character and
still evaluate since " is the default text qualifier.


On May 24, 7:46 pm, Dave Peterson wrote:
There are ways to work around the .prefixcharacter problem. But I find it
easier to just not cause it.

And maybe there are multiple sending workbooks--if that number is small, I'd
still try to open them all at once. (Small purposely left vague <vbg.)





Lori wrote:

I suspect there are multiple sending workbooks as it is the folder
name that is being replaced, and if so opening all workbooks within
that folder could be troublesome.


Thanks for pointing out the prefix character steeing, I hadn't noticed
that this was a persistent setting before. I can't see it being a
major issue here though and you could get round it by outputting to
another column column in the third step of text to columns and
deleting the existing one. I also meant to add that you may need to do
an edit links update.


On 24 May, 16:12, Dave Peterson wrote:
Just a warning.


Using '= changes the .prefixcharacter setting and can cause trouble later.


I'd replace = with $$$$$=
and then edit|replace to change it back to = after the changes.


And I'd open that sending workbook, too. I bet it would calculate faster--and
maybe stop the lockup????


Lori wrote:


Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.


1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.


On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?


--


Dave Peterson- Hide quoted text -


- Show quoted text -


--

Dave Peterson- Hide quoted text -

- Show quoted text -



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default replace all function - excel 2003

And from the OP's response, it sounds like there was only one file--or a minor
number of files if more than one.

Lori wrote:

I suspect there are multiple sending workbooks as it is the folder
name that is being replaced, and if so opening all workbooks within
that folder could be troublesome.

Thanks for pointing out the prefix character steeing, I hadn't noticed
that this was a persistent setting before. I can't see it being a
major issue here though and you could get round it by outputting to
another column column in the third step of text to columns and
deleting the existing one. I also meant to add that you may need to do
an edit links update.

On 24 May, 16:12, Dave Peterson wrote:
Just a warning.

Using '= changes the .prefixcharacter setting and can cause trouble later.

I'd replace = with $$$$$=
and then edit|replace to change it back to = after the changes.

And I'd open that sending workbook, too. I bet it would calculate faster--and
maybe stop the lockup????





Lori wrote:

Try using Text to Columns to evaluate external formulas. This is much
quicker as it does not relink to the source file.


1. Replace "=" with "'=" (precede = by apostrophe to change formula to
text).
2. Replace "CM2006" with "COST MATRIX 2006"
3. Select column and then DataText to ColumnsDelimitedTabFinish to
evaluate.


On 24 May, 15:02, Rob wrote:
this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?


--

Dave Peterson- Hide quoted text -

- Show quoted text -


--

Dave Peterson
  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,081
Default replace all function - excel 2003

Try turning automatic calculation off
Also try opening the linked file before executing the search & replace

"Rob" wrote:

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?

  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Rob Rob is offline
external usenet poster
 
Posts: 718
Default replace all function - excel 2003

thanks...worked like a charm.

"Duke Carey" wrote:

Try turning automatic calculation off
Also try opening the linked file before executing the search & replace

"Rob" wrote:

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?

  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 72
Default replace all function - excel 2003

Hi Rob,

Try doing a search and replace = sign with the = sign, then recalc.

Let me know how that worked.

Thanks,
Peggy

"Rob" wrote:

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 50
Default replace all function - excel 2003

Sorry to revive such an old tread, but I am attempting to do the same thing.

Here is what I have tried to so far:

I converted all the formulas to text by using the find = and replace with
$$$=. This was very fast.

I changed my workbook reference from jan-june to july-dec using the find and
replace. Again this was very fast.

Here is my hangup...

When I attempt to change the $$$= back to = using find and replace it slows
excel to a halt, and I end up having to use task manager to get out of it.

This even happens when I have manual calculations turned off.

Is there a step I am missing to complete this process, or am I going about
this all wrong?

Thanks,

Diane

"pshepard" wrote:

Hi Rob,

Try doing a search and replace = sign with the = sign, then recalc.

Let me know how that worked.

Thanks,
Peggy

"Rob" wrote:

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default replace all function - excel 2003

Did you try the Text to Columns method?

Replace = with "= then select the column and choose
Data Text To Columns with Delimited and click Finish.

You can then update links by in the Edit Links dialog.

On Jan 21, 8:01*pm, diaare wrote:
Sorry to revive such an old tread, but I am attempting to do the same thing.

Here is what I have tried to so far:

I converted all the formulas to text by using the find = and replace with
$$$=. *This was very fast.

I changed my workbook reference from jan-june to july-dec using the find and
replace. *Again this was very fast.

Here is my hangup...

When I attempt to change the $$$= back to = using find and replace it slows
excel to a halt, and I end up having to use task manager to get out of it.

This even happens when I have manual calculations turned off. *

Is there a step I am missing to complete this process, or am I going about
this all wrong?

Thanks,

Diane



"pshepard" wrote:
Hi Rob,


Try doing a search and replace = sign with the = sign, then recalc.


Let me know how that worked.


Thanks,
Peggy


"Rob" wrote:


this is my formula *
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?- Hide quoted text -


- Show quoted text -


  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 35,218
Default replace all function - excel 2003

If you open the "sending" file, does it work faster?

diaare wrote:

Sorry to revive such an old tread, but I am attempting to do the same thing.

Here is what I have tried to so far:

I converted all the formulas to text by using the find = and replace with
$$$=. This was very fast.

I changed my workbook reference from jan-june to july-dec using the find and
replace. Again this was very fast.

Here is my hangup...

When I attempt to change the $$$= back to = using find and replace it slows
excel to a halt, and I end up having to use task manager to get out of it.

This even happens when I have manual calculations turned off.

Is there a step I am missing to complete this process, or am I going about
this all wrong?

Thanks,

Diane

"pshepard" wrote:

Hi Rob,

Try doing a search and replace = sign with the = sign, then recalc.

Let me know how that worked.

Thanks,
Peggy

"Rob" wrote:

this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.

when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.

help?


--

Dave Peterson
  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 340
Default replace all function - excel 2003

If there's just one filename, why not just change the link by double-
clicking the old file name in the Edit Links dialog, this seems
simpler than the Replace method in the original post as well.

On Jan 22, 4:43*pm, Dave Peterson wrote:
If you open the "sending" file, does it work faster?





diaare wrote:

Sorry to revive such an old tread, but I am attempting to do the same thing.


Here is what I have tried to so far:


I converted all the formulas to text by using the find = and replace with
$$$=. *This was very fast.


I changed my workbook reference from jan-june to july-dec using the find and
replace. *Again this was very fast.


Here is my hangup...


When I attempt to change the $$$= back to = using find and replace it slows
excel to a halt, and I end up having to use task manager to get out of it.

  #15   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 50
Default replace all function - excel 2003

Thank you both for your help.

Unfortunately I was not able to use the edit links function because I was
only changing the tab it referenced, not the workbook. (unless you know
something I don't know)

But, after a little more trial and error with a comination of your
suggestions I was finally able to get it to work...it still took a few
minutes, but it completed without crashing excel.

BTW - the most crutical thing I forgot was to open the linked
workbook...duh! Sometimes the most obvious thing is all it takes....

Thanks Again,

Diane

"Lori" wrote:

If there's just one filename, why not just change the link by double-
clicking the old file name in the Edit Links dialog, this seems
simpler than the Replace method in the original post as well.

On Jan 22, 4:43 pm, Dave Peterson wrote:
If you open the "sending" file, does it work faster?





diaare wrote:

Sorry to revive such an old tread, but I am attempting to do the same thing.


Here is what I have tried to so far:


I converted all the formulas to text by using the find = and replace with
$$$=. This was very fast.


I changed my workbook reference from jan-june to july-dec using the find and
replace. Again this was very fast.


Here is my hangup...


When I attempt to change the $$$= back to = using find and replace it slows
excel to a halt, and I end up having to use task manager to get out of it.


This even happens when I have manual calculations turned off.


Is there a step I am missing to complete this process, or am I going about
this all wrong?


Thanks,


Diane


"pshepard" wrote:


Hi Rob,


Try doing a search and replace = sign with the = sign, then recalc..


Let me know how that worked.


Thanks,
Peggy


"Rob" wrote:


this is my formula
='H:\EXCELDAT\MATRIX\CM2006\[DKBSD06.XLS]FLAT BSD #2 PT'!$D$288
i need to change CM2006 to COST MATRIX 2006 in a column containing 3,500
cells.


when selecting a 3,500 cell column to replace items in the formula, i am
allowed to replace one by one, but when select replace all, excel returns $0
and then locks up.


help?


--

Dave Peterson- Hide quoted text -

- Show quoted text -





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Replace data by VALUE or COMMENTS not availabel in Excel 2003 ??? MCP Excel Discussion (Misc queries) 6 December 19th 06 04:14 PM
Find & Replace Option in Excel 2003 RachelN Setting up and Configuration of Excel 0 April 20th 06 05:44 PM
find and replace links in Excel 2003 MAndrews Excel Worksheet Functions 2 June 3rd 05 06:18 PM
Find and replace Excel, Office pro 2003 bval Excel Discussion (Misc queries) 6 January 28th 05 11:24 PM
Find and replace for comments in excel 2003 omprakash Excel Discussion (Misc queries) 1 January 28th 05 05:55 AM


All times are GMT +1. The time now is 01:51 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"