+ Reply to Thread
Results 1 to 13 of 13

neat fix to a gross line of code?

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    neat fix to a gross line of code?

    Hey guys,

    Can someone help make the below better?

    If UCase(Cells(ii, 3).Value) = UCase(" Pre-start") Or UCase(Cells(ii, 3).Value) = UCase(" pre-start") Or UCase(Cells(ii, 3).Value) = UCase("Pre-start") Or UCase(Cells(ii, 3).Value) = Empty Then
    I really hate this line of code. I would love it if I was able to feed a list of entries when I begin the code, rather then type each of them out like this.
    Anyone got an neat fixes?


    
    Sub Removeothers()
    'Input a name that you want to find.
    'Will search down a column and delete every row that does not have, the searched name within the column.
    '
    
    
    'Application.ScreenUpdating = False
    
    Dim X1 As Range
    Dim X2 As Range
    
    Dim cell As Range
    
    Set X1 = Range("C4")
    X1.Select
    Selection.End(xlDown).Select
    Set X2 = Selection
    i = X2.Row
    
    For ii = 4 To i
    If UCase(Cells(ii, 3).Value) = UCase(" Pre-start") Or UCase(Cells(ii, 3).Value) = UCase("*pre-start") Or UCase(Cells(ii, 3).Value) = UCase("Pre-start") Or UCase(Cells(ii, 3).Value) = Empty Then
    Else
    Cells(ii, 3).EntireRow.Select
    Cells(ii, 3).EntireRow.Delete Shift:=xlUp
    ii = ii - 1
    End If
    Next
    
    End Sub

  2. #2
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: neat fix to a gross line of code?

    Is it
    If Tim$(UCase(Cells(ii, 3).Value)) = "PRE-START" Or Cells(ii, 3).Value = Empty Then
    ?

  3. #3
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    Quote Originally Posted by jindon View Post
    Is it
    If Tim$(UCase(Cells(ii, 3).Value)) = "PRE-START" Or Cells(ii, 3).Value = Empty Then
    ?

    Almost works except. except Trim doesn't remove hard spaces.

  4. #4
    Forum Expert leelnich's Avatar
    Join Date
    03-20-2017
    Location
    Delaware, USA
    MS-Off Ver
    Office 2016
    Posts
    2,807

    Re: neat fix to a gross line of code?

    Hi Jimmy, this may not be what you're after, but at least it's shorter:
    If InStr(Cells(ii, 3), "pre-start", vbTextCompare) > 0 Or Cells(ii, 3).Value = Empty Then
    Please click the Add Reputation star below any helpful posts, and if you have your answer, mark your thread as SOLVED (Thread Tools up top). Thanks!-Lee
    Last edited by leelnich; 06-22-2017 at 02:47 AM.

  5. #5
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: neat fix to a gross line of code?

    In that case it is not space.
    If (UCase(Cells(ii, 3).Value) = Like "*PRE-START*") Or (Cells(ii, 3).Value = Empty) Then

  6. #6
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    Quote Originally Posted by jindon View Post
    In that case it is not space.
    If (UCase(Cells(ii, 3).Value) = Like "*PRE-START*") Or (Cells(ii, 3).Value = Empty) Then
    Haven't used "Like" before. I will play around with it. Thanks


    Any ideas how I could do the following:
    Eg1) User puts in "AR", "pre-start", "1y", "6m"

    So something that makes the line look like:
    If UCase(Cells(ii, 3).Value) = UCase("AR") Or UCase(Cells(ii, 3).Value) = UCase("Pre-start")  Or UCase(Cells(ii, 3).Value) = UCase("1y") Or UCase(Cells(ii, 3).Value) = UCase("6m") Or Cells(ii, 3).Value = Empty Then

    Eg2) User puts in "pre-start", "1y", "6m"

    So something that makes the line look like:
    If UCase(Cells(ii, 3).Value) = UCase("Pre-start")  Or UCase(Cells(ii, 3).Value) = UCase("1y") Or UCase(Cells(ii, 3).Value) = UCase("6m") Or Cells(ii, 3).Value = Empty Then
    How would I go about doing that, for an indefinite number of user imputs.

  7. #7
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: neat fix to a gross line of code?

    How do user inputs those string?

  8. #8
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    hey Jindon,

    Below is how users will input:

    aaa = "something"
    '  "y1", "6m", "3m", "1m", "250h", "pre-start"
    
    i = 0
    Do
    Coll1.Add Application.InputBox("Type what you want to keep" & _
    vbNewLine & _
    vbNewLine & "Press [Cancel] to run the search using:" & _
    vbNewLine & _
    vbNewLine & strings1 & _
    vbNewLine & " ", "Some stuff", aaa, Type:=2)
    i = i + 1
    strings1 = Coll1(i) & ", " & strings1
    Loop Until Coll1(i) = False
    Coll1.Remove (i)

  9. #9
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: neat fix to a gross line of code?

    See if this is how you wanted.
    Sub test()
        Dim txt As String, aaa As String, dic As Object
        Dim i As Long, ii As Long, x As Range
        Set dic = CreateObject("Scripting.Dictionary")
        dic.CompareMode = 1
        aaa = "something"
        Do
            txt = Application.InputBox("Type what you want to keep" & _
                vbNewLine & _
                vbNewLine & "Press [Cancel] to run the search using:", "Some stuff", aaa)
            If (txt = "") + (txt = False) Then Exit Do
            dic(txt) = Empty
        Loop
        If dic.Count = 0 Then Exit Sub
        i = Range("C4").End(xlDown).Row
        For ii = 4 To i
            txt = Evaluate("trim(clean(substitute(c" & ii & ",char(160),"""")))")
            If Not dic.exists(txt) Then
                If x Is Nothing Then
                    Set x = Cells(ii, 3)
                Else
                    Set x = Union(x, Cells(ii, 3))
                End If
            End If
        Next
        If Not x Is Nothing Then x.Delete xlShiftUp
    End Sub

  10. #10
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    Hey Jindon,

    Thanks for the help. This is what I ended up with:
    I'm going to play around with your solution in a bit, see if I can learn anything.

    My solution:
    Sub KeepOnlyDuplications()
    'Version 2.1
    'Creates a new tabs with the sorted information. (non searched and non-found rows are deleted)
    'Renames the tab to be alphabetical
    'Runs multiple searchs on a single tab
    'finds anything what has words containing what is being searched
    
    Dim Coll1 As New Collection
    Dim strings1 As String
    Dim tempname As String
    Dim tempname2 As String
    Dim colours As Long
    colours = 0
    
    Dim aaa As String
    Dim JJJ As Long
    Dim i As Long
    Dim ii As Long
    Dim BlankstoSkip As Long
    Dim cell As Range
    Dim TrueFalse As Boolean
    
    
    'Housekeeping
    Dim Neat As Range
    Dim NeatBook As Worksheet
    Set NeatBook = ActiveSheet
    Set Neat = Range(ActiveCell.Address)
    Application.ScreenUpdating = False
    
    
    
    aaa = "pre-start"
    'pre-start, AR, 250h, 1m, 3m, 6m, 1y
    i = 0
    Do
    Coll1.Add Application.InputBox("Type what you want to keep" & _
    vbNewLine & _
    vbNewLine & "Press [Cancel] to run the search using:" & _
    vbNewLine & _
    vbNewLine & strings1 & _
    vbNewLine & " ", "Some stuff", aaa, Type:=2)
    i = i + 1
    strings1 = Coll1(i) & ", " & strings1
    Loop Until Coll1(i) = False
    Coll1.Remove (i)
    '''''''''
    'Sort Collection
    SortCollection Coll1
    strings1 = vbNullString
    For i = 1 To Coll1.Count
    strings1 = strings1 & ", " & Coll1(i)
    Next i
    'rename strings1
    '''''''''
    strings1 = Right(StrConv(Replace(strings1, "False, ", ""), 3), Len(StrConv(Replace(strings1, "False, ", ""), 3)) - 2)
    '''''
    'Collection here to save all searchs
    '''''
    
    'If MsgBox("This is what the program does." & vbNewLine & vbNewLine & "Run program on worksheet copy?" & vbNewLine & vbNewLine & "[Yes] = Create Backup", vbYesNo) = vbYes Then
    Sheets(ActiveWorkbook.ActiveSheet.Name).Select
    tempname = ActiveWorkbook.ActiveSheet.Name
    tempname2 = tempname & " " & strings1
        Do While Len(tempname2) >= 31
        tempname2 = Application.InputBox("The name length of the new tab is greater then 31 characters." & vbNewLine _
        & "The automatically generatered name was: " & tempname & " " & strings1 & vbNewLine & "Please enter in a new name for the tab:", _
        "Select top of the column the program is search down.", tempname2, Type:=2)
        Loop
    'End If
    
    
    
    Sheets(ActiveWorkbook.ActiveSheet.Name).Copy After:=ActiveWorkbook.ActiveSheet
    ActiveWorkbook.ActiveSheet.Name = tempname2
    ActiveWorkbook.ActiveSheet.Tab.Color = 5535 + colours
    
    
    
    Dim X1 As Range
    Dim X2 As Range
    BlankstoSkip = 10
    
    Set X1 = Application.InputBox("Column containing the words to be searched.", "Select top of the column the program is search down.", "C4", Type:=8)
    Set X1 = Range("C4")
    X1.Select
    Selection.End(xlDown).Select
    Set X2 = Selection
    
    For ii = 1 To BlankstoSkip + 1
    Do While Not IsEmpty(X2.Offset(ii, 0))
    Selection.End(xlDown).Select
    Set X2 = Selection
    ii = 1
    Loop
    Next ii
    
    
    i = X2.Row
    
    For Each cell In Range(X1, X2)
    cell.Value = Replace(cell, ChrW(&HA0), vbNullString)
    If Trim(cell) = vbNullString Then
    Else
    cell.Value = Trim(cell)
    If cell = ChrW(&HA0) Then
    cell.Value = vbNullString
    Else
    End If
    End If
    Next cell
    
    For ii = 5 To i
    If (Cells(ii, 3).Offset(-1, 0).Value) = vbNullString And UCase(Cells(ii, 3).Value) = vbNullString Then
    Cells(ii, 3).Offset(-1, 0).EntireRow.Delete Shift:=xlUp
    Else
    End If
    
    TrueFalse = False
    For i = 1 To Coll1.Count
        If UCase(Cells(ii, 3).Value) Like UCase(Coll1(i)) Then
        TrueFalse = True
        End If
    Next i
    
    If TrueFalse = True Or UCase(Cells(ii, 3).Value) = vbNullString Then
        Else
        Cells(ii, 3).EntireRow.Delete Shift:=xlUp
        ii = ii - 1
    End If
    Next ii
    
    
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Range("B4").Select
    Selection.End(xlDown).Select
    ActiveCell.Offset(0, -1).Select
    Selection.Borders(xlEdgeBottom).LineStyle = xlContinuous
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    
    Application.ScreenUpdating = True
    NeatBook.Select
    Neat.Select
    
    End Sub
    
    
    
    Public Sub SortCollection(ColVar As Collection)
        Dim oCol As Collection
        Dim i As Integer
        Dim i2 As Integer
        Dim iBefore As Integer
        If Not (ColVar Is Nothing) Then
            If ColVar.Count > 0 Then
                Set oCol = New Collection
                For i = 1 To ColVar.Count
                    If oCol.Count = 0 Then
                        oCol.Add ColVar(i)
                    Else
                        iBefore = 0
                        For i2 = oCol.Count To 1 Step -1
                            If LCase(ColVar(i)) < LCase(oCol(i2)) Then
                                iBefore = i2
                            Else
                                Exit For
                            End If
                        Next
                        If iBefore = 0 Then
                            oCol.Add ColVar(i)
                        Else
                            oCol.Add ColVar(i), , iBefore
                        End If
                    End If
                Next
                Set ColVar = oCol
                Set oCol = Nothing
            End If
        End If
    End Sub

    I'm hoping to make the program Ask if they user wants to run the program more then once and accept all the inputs at the very start before it has started running. I think I would need a loop around the following bit of code:

    aaa = "pre-start"
    'pre-start, AR, 250h, 1m, 3m, 6m, 1y
    i = 0
    Do
    Coll1.Add Application.InputBox("Type what you want to keep" & _
    vbNewLine & _
    vbNewLine & "Press [Cancel] to run the search using:" & _
    vbNewLine & _
    vbNewLine & strings1 & _
    vbNewLine & " ", "Some stuff", aaa, Type:=2)
    i = i + 1
    strings1 = Coll1(i) & ", " & strings1
    Loop Until Coll1(i) = False
    Coll1.Remove (i)
    '''''''''
    'Sort Collection
    SortCollection Coll1
    strings1 = vbNullString
    For i = 1 To Coll1.Count
    strings1 = strings1 & ", " & Coll1(i)
    Next i
    'rename strings1
    '''''''''
    strings1 = Right(StrConv(Replace(strings1, "False, ", ""), 3), Len(StrConv(Replace(strings1, "False, ", ""), 3)) - 2)
    '''''
    'Collection here to save all searchs
    '''''
    
    'If MsgBox("This is what the program does." & vbNewLine & vbNewLine & "Run program on worksheet copy?" & vbNewLine & vbNewLine & "[Yes] = Create Backup", vbYesNo) = vbYes Then
    Sheets(ActiveWorkbook.ActiveSheet.Name).Select
    tempname = ActiveWorkbook.ActiveSheet.Name
    tempname2 = tempname & " " & strings1
        Do While Len(tempname2) >= 31
        tempname2 = Application.InputBox("The name length of the new tab is greater then 31 characters." & vbNewLine _
        & "The automatically generatered name was: " & tempname & " " & strings1 & vbNewLine & "Please enter in a new name for the tab:", _
        "Select top of the column the program is search down.", tempname2, Type:=2)
        Loop
    'End If
    ***I think I would need a loop and to change my variables to arrays or 2 dimensional collections? I'm not sure how to go about doing that.****

    Let me know what you think.

    Jimmy.
    Last edited by JimmyWilliams; 06-23-2017 at 06:12 AM. Reason: Added more to the question.

  11. #11
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    Also

    Whenever I run this line:

    Set X1 = Application.InputBox("Column containing the words to be searched.", "Select top of the column the program is search down.", "C4", Type:=8)
    The inputbox has "D:D" in it, why isn't it showing "C4"? What is wrong?


    Thanks,
    Jimmy

  12. #12
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,834

    Re: neat fix to a gross line of code?

    Can you upload a workbook?

    I don't understand the reason why you need to sort the collection etc...

  13. #13
    Forum Contributor
    Join Date
    04-02-2017
    Location
    Australia
    MS-Off Ver
    2016
    Posts
    405

    Re: neat fix to a gross line of code?

    Quote Originally Posted by jindon View Post
    Can you upload a workbook?

    I don't understand the reason why you need to sort the collection etc...
    I managed to get this all working.

    The "sort collection" part, was so I could have everything alphabetical, and also have similar entries next to each other in the collection, so I could removed them and result in a unique list.

    I had to do a second "sort collection" that made sure that the longest strings where searched for first and then the shortest, to prevent accidently having my information go into the wrong category (if the string of the shorter is also found within the longer string, would result in errors).

    Anyways, thanks for your help!

    Jimmy

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Derive Gross Pay plus Payroll Taxes from a Gross Amount
    By JackJack185 in forum Excel Formulas & Functions
    Replies: 12
    Last Post: 05-09-2017, 03:56 PM
  2. VBA code to copy line items from form - overriding previous line item
    By dkostyan in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-30-2016, 11:19 AM
  3. [SOLVED] How to write code so its easy to read (make it neat)
    By Decar in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 12-17-2013, 05:03 AM
  4. Paste Special Add Value - Neat Code?
    By delfi in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-22-2010, 10:41 AM
  5. Neat way of reworking an Addin.
    By cablesforless in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-01-2006, 11:54 AM
  6. [SOLVED] Writing neat code
    By Roderick O'Regan in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-30-2005, 08:45 PM

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