+ Reply to Thread
Results 1 to 17 of 17

Auto Find/Replace + Marco sort?

Hybrid View

  1. #1
    Registered User
    Join Date
    04-17-2008
    Location
    Yorkshire
    Posts
    79

    Auto Find/Replace + Marco sort?

    Two quick ones. People seem to be calling shovels spades etc if different sheets, so what I'm looking for is something that searches all worksheets in the work book for occurances of A1 (shovel) and replace it with A2 (spades). The list will be about 100 cells long and the idea would be that I could copy a sheet called "replace" with this list in, run it and standardise all the terms in the list within that workbook. Does it sound feasable?

    The other query I'm not sure can be done. When I've tidied all these 'names' to a standard one, I want to sort the data (sometimes rows, sometimes columns) alphabeticalled for instance by the A1 to A10, or by A1 to Z1. Simply using the sort option loses all the references as is doesnt change any cells linked to that cell. The only way I could think to make keep the other cells pointing to where they should is to cut and paste/each row/column in alphabetical order manually, but it's taking me forever! Is there another way?

    Regards,

    Mike

  2. #2
    Forum Contributor WinteE's Avatar
    Join Date
    04-07-2007
    Location
    Netherlands
    Posts
    544
    Hi Mike,

    Are you familiar with VBA ?

    Erik
    Just keep it simple !


    http://www.excelguide.eu
    In English as well as in Dutch

  3. #3
    Registered User
    Join Date
    04-17-2008
    Location
    Yorkshire
    Posts
    79
    Quote Originally Posted by WinteE
    Hi Mike,

    Are you familiar with VBA ?

    Erik
    Not in the slightest, bar copying examples from places such of this and 'jiggering' them to attempt to do what I need them to.

    If any queries I have would require several hours of work obviously I wouldnt expect anyone to do that, but if (hopefully) it could be done simply in a few lines, or anyone could point me in the direction of examples it would save me hours/days of maunally doing what I'm doing... and I would of course be eternally greatful!
    Last edited by mikeyfear; 04-30-2008 at 03:03 AM.

  4. #4
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161
    Mikeyfear, the code below goes in a standard module (Alt+F11, then right click in the window on the left where you see ThisWorkbook then choose Insert, Module) paste the code in its entirity.
    Sub Find_n_Replace()
    Dim Rng As Range, MyCell As Range
    Dim Sht As Worksheet
    Set Rng = Sheets("Sheet3").Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
    ' change sheet name to suit as this is where your list will be
    For Each Sht In Sheets
    Application.ScreenUpdating = False
    Sht.Select
    If Sht.Name = "Sheet3" Then GoTo Nxt' change sheet like above
    For Each MyCell In Rng
         Cells.Replace What:=MyCell.Value, Replacement:=MyCell.Offset(0, 1).Value, LookAt:=xlWhole, _
            SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
            ReplaceFormat:=False
    Next MyCell
    Nxt:
    Next Sht
    Application.ScreenUpdating = True
    End Sub
    My sheet 3 will be the sheet you have list on, the way it works is in column A have the list of words to look for and in column B have the words you want to change them for, so in A1 if you had Spade then in B1 you must have Shovel, when you run the code above it will then change Spade to Shovel, you can of course add a button to your worksheet or toolbar and assign this macro or from the window where you pasted the code click the run button or from excels toolbar choose Tools, Macro, Macro's and then run the one you want, it is in this option window that you can set a keyboard shortcut to run the macro.
    Not all forums are the same - seek and you shall find

  5. #5
    Registered User
    Join Date
    04-17-2008
    Location
    Yorkshire
    Posts
    79
    Quote Originally Posted by Simon Lloyd
    Mikeyfear, the code below goes in a standard module (Alt+F11, then right click in the window on the left where you see ThisWorkbook then choose Insert, Module) paste the code in its entirity.
    Sub Find_n_Replace()
    Dim Rng As Range, MyCell As Range
    Dim Sht As Worksheet
    Set Rng = Sheets("Sheet3").Range("A1:A" & Range("A" & Rows.Count).End(xlUp).Row)
    ' change sheet name to suit as this is where your list will be
    For Each Sht In Sheets
    Application.ScreenUpdating = False
    Sht.Select
    If Sht.Name = "Sheet3" Then GoTo Nxt' change sheet like above
    For Each MyCell In Rng
         Cells.Replace What:=MyCell.Value, Replacement:=MyCell.Offset(0, 1).Value, LookAt:=xlWhole, _
            SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
            ReplaceFormat:=False
    Next MyCell
    Nxt:
    Next Sht
    Application.ScreenUpdating = True
    End Sub
    My sheet 3 will be the sheet you have list on, the way it works is in column A have the list of words to look for and in column B have the words you want to change them for, so in A1 if you had Spade then in B1 you must have Shovel, when you run the code above it will then change Spade to Shovel, you can of course add a button to your worksheet or toolbar and assign this macro or from the window where you pasted the code click the run button or from excels toolbar choose Tools, Macro, Macro's and then run the one you want, it is in this option window that you can set a keyboard shortcut to run the macro.
    That's cracking, thanks a million!

    If I want it to highlight the cells it replaces what do I need to add?

    Is the sorting marco I was talking about in the original post viable too or is that a non starter?

    Regards,

    Mike

  6. #6
    Forum Expert Simon Lloyd's Avatar
    Join Date
    03-02-2004
    Location
    locked in the cage
    MS-Off Ver
    All the ones my homepage shows
    Posts
    3,161
    Sounds like a daft question, but why would you want to highlight those cells? and as for the sort and problems with links i would need to see your workbook or a dummy just like it, you can upload one by using Manage attachments at the bottom of your post window.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1