Results 1 to 12 of 12

Stop Macro If Blank

Threaded View

  1. #1
    Registered User
    Join Date
    09-18-2011
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    6

    Stop Macro If Blank

    Hi.
    I'm finally nearing the end of what has been a difficult and frustrating project for me.

    One remaining issue is that I need the macro below to only copy values in column N that are nonblank.
    The macro then takes the values in column N and performs a Text to Columns (this works properly, but blanks return an error).

    Sorry if this is confusing, this is a pretty advanced project for me. The code below is probably inefficient, but it has been getting the job done.

    Sub Calculate()
        Range("K:L,N:O,Q:V,X:AB").Select
        Selection.ClearContents
        Columns("A:H").Select
        Selection.Copy
        Columns("W:W").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Columns("W:X").Select
        Application.CutCopyMode = False
        Selection.Delete Shift:=xlToLeft
        Range("X:X,Z:Z,AB:AB").Select
        Selection.Delete Shift:=xlToLeft
        Columns("J:J").Select
        Selection.Copy
        Columns("K:K").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Application.CutCopyMode = False
        Selection.TextToColumns Destination:=Range("K1"), DataType:=xlDelimited, _
            TextQualifier:=xlNone, ConsecutiveDelimiter:=True, Tab:=False, Semicolon _
            :=False, Comma:=False, Space:=True, Other:=False, FieldInfo:=Array( _
            Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True
        Columns("M:M").Select
        Selection.Copy
        Columns("N:N").Select
        Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
            :=False, Transpose:=False
        Application.CutCopyMode = False
        Selection.TextToColumns Destination:=Range("N1"), DataType:=xlDelimited, _
            TextQualifier:=xlNone, ConsecutiveDelimiter:=True, Tab:=False, Semicolon _
            :=False, Comma:=False, Space:=True, Other:=False, FieldInfo:=Array( _
            Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True
        Range("A1").Select
        Columns("W:W").Select
        Selection.TextToColumns Destination:=Range("Q1"), DataType:=xlDelimited, _
            TextQualifier:=xlNone, ConsecutiveDelimiter:=True, Tab:=False, Semicolon _
            :=False, Comma:=False, Space:=True, Other:=False, FieldInfo:=Array( _
            Array(1, 1), Array(2, 1)), TrailingMinusNumbers:=True
        Columns("X:X").Select
        Selection.TextToColumns Destination:=Range("S1"), DataType:=xlDelimited, _
            TextQualifier:=xlNone, ConsecutiveDelimiter:=True, Tab:=False, Semicolon _
            :=False, Comma:=False, Space:=True, Other:=False, FieldInfo:=Array(1, 1 _
            ), TrailingMinusNumbers:=True
        Columns("Y:Y").Select
        Selection.TextToColumns Destination:=Range("U1"), DataType:=xlDelimited, _
            TextQualifier:=xlNone, ConsecutiveDelimiter:=True, Tab:=False, Semicolon _
            :=False, Comma:=False, Space:=True, Other:=False, FieldInfo:=Array(1, 1 _
            ), TrailingMinusNumbers:=True
        Range("A1").Select
    End Sub
    Last edited by id10t; 09-18-2011 at 09:48 PM.

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