Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello from Steved
I would like to please to take the below and add a count to it please, meaning how many times did it do replacing, as at the moment I have to check each worksheet. I know for example how many it should do for example I put the value 2202 and to replace it with value 4403, it will find in all open workbooks 2202 in 8 different workbooks and replace it with 4403, What I need to do is now check each of these workbooks, if their could be a total of 8 in the input box I know it is right and that would save me checking it. Thankyou. Sub ChangeAllValues2() Dim mySht As Worksheet Dim myBook As Workbook Dim ReplaceWith As String Dim ToReplace As String ToReplace = Application.InputBox("What value to replace?") ReplaceWith = Application.InputBox("Replace '" & _ ToReplace & "' with what other value?") For Each myBook In Application.Workbooks For Each mySht In myBook.Worksheets mySht.Cells.Replace _ ToReplace, ReplaceWith, _ xlWhole Next mySht Next myBook End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Employee Work Time - Don't Double-count Overlapping Apts. | Excel Worksheet Functions | |||
Excel 2000, count, sort a list & count totals? | Excel Worksheet Functions | |||
Count Intervals of 2 Consecutive Values in same Row and Return Count across Row | Excel Worksheet Functions | |||
Count Intervals of 2 Numeric values in same Row and Return Count across Row | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions |