Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Dear all, having tried to REPLACE "=" with "&" (to inactivate and activate an
add-in formula) in two different worksheets of the same workbook, the "replace function" (see below macro) only works in the first (active) worksheet. Suggestions?: Sub Macro1() Columns("B:E").Select Selection.Replace What:="=INF", Replacement:="&INF", LookAt:=xlPart, _ SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _ ReplaceFormat:=False Sheets("Sheet 2").Select Application.Goto Reference:="Area2" Selection.Replace What:="&INF", Replacement:="=INF", LookAt:=xlPart, _ SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _ ReplaceFormat:=False Sheets("Sheet 1").Select MsgBox ("Ready") End Sub It might be that "activating" the formula (chaning to "=") demands some processing time, and a "wait" command is needed. However it seems my macro is not even moving to sheet 2. Kind regards /Jan |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel keeps converting text to date format | Excel Discussion (Misc queries) | |||
Formulas dealing with text data | Excel Worksheet Functions | |||
Excel - Find & Replace text in a string | Excel Worksheet Functions | |||
Replace Number with Text using Macro | Excel Discussion (Misc queries) | |||
Macro to delete and replace a text box | Excel Discussion (Misc queries) |