+ Reply to Thread
Results 1 to 10 of 10

Compile Error: Expected End With

Hybrid View

  1. #1
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Compile Error: Expected End With

    Hi,

    I have been recording 3 separate Marco’s in excel and now would like them to become one.

    The separate Marco’s are:-
    1) To format a header, and copy an “If” statement in to cell K4
    2) To fill the copied information in K4 down to a dynamic range
    3) To conditional format the rows that have "Yes" in the column K.

    The script is below, but I get the error "Compile Error: Expected End With"
    I have tried many things but I can't seem to join these Marcos together.

    I hope someone can help me with this, as this s is driving me crazy

    Thanks in advance
    Rob

    Sub Needs_Confirmation()
    '
    ' Needs_Confirmation Macro
    '
    
    '
        Range("K3").Select
        With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .ThemeColor = xlThemeColorAccent3
            .TintAndShade = 0.799951170384838
            .PatternTintAndShade = 0
        End With
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlBottom
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Needs Confirmations?"
        With ActiveCell.Characters(Start:=1, Length:=20).Font
            .Name = "Calibri"
            .FontStyle = "Bold"
            .Size = 11
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleSingle
            .ThemeColor = xlThemeColorLight1
            .TintAndShade = 0
            .ThemeFont = xlThemeFontMinor
        End With
        Columns("K:K").Select
        Columns("K:K").EntireColumn.AutoFit
        Range("K4").Select
        Sheets("Settlements Sheet").Select
        Range("P1").Select
        Sheets("1800").Select
        ActiveCell.FormulaR1C1 = _
            "=IF(C[-5]=""Commitment Fee Internal"",""Yes"",IF(C[-5]=""Cross Currency Swap"",""Yes"",IF(C[-5]=""Fixed Loan Mortgage"",""Yes"",IF(C[-5]=""Floating Loan"",""Yes"",IF(C[-5]=""NDF"",""YES"",IF(C[-5]=""NDS"",""YES"",IF(C[-5]=""Interest Rate Swap"",""YES"",""NO"")))))))"
    
    '
    LastRow = Cells(Rows.Count, "A").End(xlUp).Row
    With ActiveSheet
        .Range("K4").AutoFill Destination:=.Range("K4:K" & LastRow)
    
    
    
    '
        Range("A4:K814").Select
        ActiveWindow.LargeScroll Down:=-20
        Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=$K4=""YES"""
        Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
        With Selection.FormatConditions(1).Interior
            .PatternColorIndex = xlAutomatic
            .Color = 65535
            .TintAndShade = 0
        End With
        Selection.FormatConditions(1).StopIfTrue = False
    End Sub
    Last edited by Robert110; 02-14-2013 at 06:37 AM.

  2. #2
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Compile Error: Expected End With

    Rob

    It's hard to tell where the problem is without seeing the code in tags.

    Could you edit and add them?
    If posting code please use code tags, see here.

  3. #3
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Re: Compile Error: Expected End With

    Hi Norie

    Ok I will.

    Rob

  4. #4
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Compile Error: Expected End With

    Rob

    You can (should?) add code tags so that it makes the code easier to read/copy.

    The tags will preserve any indentation and will make the code stand out from the rest of the post.

    To add tags, select the code and press the # button in the toolbar above the reply box.


    PS Try sticking End With just before End Sub.

  5. #5
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Re: Compile Error: Expected End With

    Ok Norie, Thanks for telling me about the coda posting ,

    Sorry I didn't know about the cods tag's I will do that in future.

    I did try "End With" but it still errored.

    I am working on a different computer at the min and don't have the code here with me. so I had to copy and paste the code from Excel to and e-mail and then post it on this thread
    But if it helps I can get the code from excel tomorrow and post it in a code format.

    Rob

  6. #6
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Compile Error: Expected End With

    Rob

    I might have missed something - it is hard to read the code without the tags.

    PS You can edit your original post to add the code tags.

  7. #7
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Re: Compile Error: Expected End With

    Norie,

    Thanks for the tip, I will edit my first post. Once I get on the other computer.
    Thanks very much for helping me

    Rob

  8. #8
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Re: Compile Error: Expected End With

    Hi Norie,

    I have added the code in the correct format to my first message. I hope this makes it a bit clearer now.

    Thanks again for your help

    Rob

  9. #9
    Forum Guru Norie's Avatar
    Join Date
    02-02-2005
    Location
    Stirling, Scotland
    MS-Off Ver
    Microsoft Office 365
    Posts
    19,644

    Re: Compile Error: Expected End With

    Rob

    That does help, the answer is still the same though - all you need to do is add End With just before End Sub.
    
    Option Explicit
    
    Sub Needs_Confirmation()
    Dim LastRow As Long
    
        Range("K3").Select
        With Selection.Interior
            .Pattern = xlSolid
            .PatternColorIndex = xlAutomatic
            .ThemeColor = xlThemeColorAccent3
            .TintAndShade = 0.799951170384838
            .PatternTintAndShade = 0
        End With
        With Selection
            .HorizontalAlignment = xlCenter
            .VerticalAlignment = xlBottom
            .WrapText = False
            .Orientation = 0
            .AddIndent = False
            .ShrinkToFit = False
            .ReadingOrder = xlContext
            .MergeCells = False
        End With
        ActiveCell.FormulaR1C1 = "Needs Confirmations?"
        With ActiveCell.Characters(Start:=1, Length:=20).Font
            .Name = "Calibri"
            .FontStyle = "Bold"
            .Size = 11
            .Strikethrough = False
            .Superscript = False
            .Subscript = False
            .OutlineFont = False
            .Shadow = False
            .Underline = xlUnderlineStyleSingle
            .ThemeColor = xlThemeColorLight1
            .TintAndShade = 0
            .ThemeFont = xlThemeFontMinor
        End With
        Columns("K:K").Select
        Columns("K:K").EntireColumn.AutoFit
        Range("K4").Select
        Sheets("Settlements Sheet").Select
        Range("P1").Select
        Sheets("1800").Select
        ActiveCell.FormulaR1C1 = _
        "=IF(C[-5]=""Commitment Fee Internal"",""Yes"",IF(C[-5]=""Cross Currency Swap"",""Yes"",IF(C[-5]=""Fixed Loan Mortgage"",""Yes"",IF(C[-5]=""Floating Loan"",""Yes"",IF(C[-5]=""NDF"",""YES"",IF(C[-5]=""NDS"",""YES"",IF(C[-5]=""Interest Rate Swap"",""YES"",""NO"")))))))"
    
        '
        LastRow = Cells(Rows.Count, "A").End(xlUp).Row
        With ActiveSheet
            .Range("K4").AutoFill Destination:=.Range("K4:K" & LastRow)
    
            Range("A4:K814").Select
            ActiveWindow.LargeScroll Down:=-20
            Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=$K4=""YES"""
            Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
            With Selection.FormatConditions(1).Interior
                .PatternColorIndex = xlAutomatic
                .Color = 65535
                .TintAndShade = 0
            End With
            Selection.FormatConditions(1).StopIfTrue = False
        End With
    
    End Sub

  10. #10
    Registered User
    Join Date
    02-11-2013
    Location
    Copenhagen
    MS-Off Ver
    Excel 2007
    Posts
    58

    Re: Compile Error: Expected End With

    Thank you so much Norie, that worked perfectly.

    To help me understand, why did I need an "End With" there, why wouldn't an End Sub just do?

    Thanks again, this was driving me crazy:-)

+ 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