+ Reply to Thread
Results 1 to 4 of 4

Error 400 - Search and Replace

Hybrid View

  1. #1
    Registered User
    Join Date
    09-07-2011
    Location
    Denver, CO USA
    MS-Off Ver
    Excel 2003
    Posts
    3

    Error 400 - Search and Replace

    This code "should" search the "pricing page" tabe and updates cells C7 to C50 workbook. Instead I am getting an error "400" Ideas?

    Sub ReplacePremier()
    Dim wks As Worksheet
    Dim vWhat As Variant
    Dim vRepl As Variant
    
    vWhat = Worksheets("Updates").Range("A6").Value
    vRepl = Worksheets("Updates").Range("C6").Value
    
    Set target = Worksheets("Pricing Page").Range(Range("C7"), Range("C50").End(xlUp))
    
    For Each wks In Worksheets
    wks.Cells.Replace What:=vWhat, _
    Replacement:=vRepl, _
    LookAt:=xlPart, _
    SearchOrder:=xlByRows, _
    MatchCase:=False, _
    SearchFormat:=False, _
    ReplaceFormat:=False
    Next wks
    End Sub

  2. #2
    Forum Expert p24leclerc's Avatar
    Join Date
    07-05-2010
    Location
    Québec
    MS-Off Ver
    Excel 2021
    Posts
    2,081

    Re: Error 400 - Search and Replace

    I can't explain but you have to first select the worksheet then set the range as I did in the code below. I'm not sure at all this code will do what you want but you'll at least be able to test it.
    Good luck
    Pierre
    Sub ReplacePremier()
    Dim wks As Worksheet
    Dim vWhat As Variant
    Dim vRepl As Variant
    
    vWhat = Worksheets("Updates").Range("A6").Value
    vRepl = Worksheets("Updates").Range("C6").Value
    Worksheets("Pricing Page").Select
    Set target = Range("C7", Cells(Rows.Count, 3).End(xlUp))
    
    For Each wks In Worksheets
    wks.Cells.Replace What:=vWhat, _
    Replacement:=vRepl, _
    LookAt:=xlPart, _
    SearchOrder:=xlByRows, _
    MatchCase:=False, _
    SearchFormat:=False, _
    ReplaceFormat:=False
    Next wks
    End Sub

  3. #3
    Registered User
    Join Date
    09-07-2011
    Location
    Denver, CO USA
    MS-Off Ver
    Excel 2003
    Posts
    3

    Re: Error 400 - Search and Replace

    The code did remove the error, but now updated every item with the same value.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Error 400 - Search and Replace

    Why are you setting the (undeclared) range variable target and then not using it? Maybe you could explain in words what you're trying to do.
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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