+ Reply to Thread
Results 1 to 3 of 3

Ignore Error not working

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    07-30-2012
    Location
    Leeds
    MS-Off Ver
    Excel 2013
    Posts
    177

    Ignore Error not working

    Hello all,
    I am trying to suppress the error message (green triangle top left corner of cell). I have tried
    On Error Resume Next
    On Error GoTo 0
    At the start and end of code, but to no avail. Does anyone have any suggestions? Many Thanks! Luke

    Sub mcrpasteformulaandcommentlist()
    On Error Resume Next
    On Error GoTo 0
        ActiveWindow.SmallScroll Down:=23
        Range("C50").Select
        ActiveCell.FormulaR1C1 = _
            "=IF(R[-43]C[1]=""y"",(CONCATENATE(""Well Done "",LEFT(R4C3,FIND("" "",R4C3)-1),"" you have completed "",R[-43]C[-2],"" "",R[-43]C)),IF(R[-43]C[1]=""n"",CONCATENATE(""Please use the "",R[-43]C[-2],"" user guide to complete "",R[-43]C),IF(R[-43]C[1]=""I"",""Teacher Comment Required"","""")))"
        Range("C51").Select
        ActiveWindow.SmallScroll Down:=-36
        Range("G7").Select
        ActiveCell.FormulaR1C1 = _
            "=IF(RC[-3]=""y"",(CONCATENATE(""Well Done "",LEFT(R4C3,FIND("" "",R4C3)-1),"" you have completed "",RC[-6],"" "",RC[-4])),IF(RC[-3]=""n"",CONCATENATE(""Please use the "",RC[-6],"" user guide to complete "",RC[-4]),IF(RC[-3]=""I"",""Teacher Comment Required"","""")))"
        Range("G7").Select
        Selection.AutoFill Destination:=Range("G7:G26")
        Range("G7:G26").Select
        Range("G7:G26").Select
        Range("G8").Activate
     
    
    Range("G7").Select
    With Selection.Validation
            .Delete
            .Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
            xlBetween, Formula1:="=Comments!$A$3:$A$7"
            .IgnoreBlank = True
            .InCellDropdown = True
            .InputTitle = ""
            .ErrorTitle = ""
            .InputMessage = ""
            .ErrorMessage = ""
            .ShowInput = False
            .ShowError = False
        End With
    End Sub

  2. #2
    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: Ignore Error not working

    Cross-posted: http://www.mrexcel.com/forum/excel-q...t-working.html
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Forum Contributor
    Join Date
    07-30-2012
    Location
    Leeds
    MS-Off Ver
    Excel 2013
    Posts
    177

    Re: Ignore Error not working

    Solved by
    Application.ErrorCheckingOptions.BackgroundChecking = False

+ 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