Results 1 to 17 of 17

which option faster and why?

Threaded View

  1. #1
    Forum Contributor
    Join Date
    12-01-2007
    Location
    USA-North Carolina
    MS-Off Ver
    MS Office 2016
    Posts
    2,712

    which option faster and why?

    I have a column of names which i am trying to parse.

    1) The first ways is to go through each cell in the column and parse it accordingly. Here is the code i used to parse the col of strings.

    For RowIndex = 2 To last_row1
            If InStr(myinputwrksht.Range(alphacol(Hdr_ProdNme_col) & RowIndex).Value, "-") > 0 Then
                ProductName = myinputwrksht.Range(alphacol(Hdr_ProdNme_col) & RowIndex).Value
                myinputwrksht.Range(alphacol(Hdr_ProdNme_col) & RowIndex).Value = Trim(Left(ProductName, InStr(1, ProductName, "-", 1) - 1))
            End If
    Next




    2) the 2nd way is to insert a col next to the column of interest. insert "excel formulas" into this new col which modify the previous col entries. Next fill down formulas, cut-n-paste values into previous col, then del col you added.





    Which way is faster? The 2nd way................go figure.......would never have guessed it.

    I have a macro file that is about 1.3Meg in size. When i run this macro and try to run option 1 it takes about 10 sec as compared to about 1.8 secs with the 2nd option.


    note: If i just want to parse the col of strings and I DONT have this 1.3Meg file open......ie...just parse file using a test file.........it takes no time at all for either option to run. But for some reason option 2 is fastest when i have this 1.3meg macro file open.

    any thoughts?
    Last edited by welchs101; 06-09-2011 at 05:27 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