VBA loop to search 100,000s of cells to modify and replace taking too long.

axonjacksn

New Member
Joined
Jun 16, 2011
Messages
2
Hi, first time poster here.

I'm working on parsing iostat information (it's a unix command to get disk information). It provides disk information in bytes, but when it gets to 1000 bytes it changes it to KB. For example, I'll have a data point that says 900 which mean 900 bytes and then another data point that says 1.1K which is 1100 bytes. Excel doesn't understand what the "K" means so I have to do a search for all cells that have a number followed by a "K" and then strip the "." and "K" out and add two zeros so that I have an actual number.

My issue is that the code I have in VBA is taking a long time to execute. When I have a large file (60,000 lines) there are over 20,000 instances with "K." The code runs an average of 565 "K" replacements per minute which will translate this to about 35 minutes to complete.

I don't have a lot of experience coding VBA so I did a mishmash of macro recording and things I found online.

Can someone let me know how I can optimize my code to do a faster search/modify/replace?

Thanks!

Here is my code:

Code:
Sub find_ks()
'
' find_ks Macro
'

Dim cellvalue As String
Dim cellsmallvalue As String
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Do While 1 = 1


    Columns("C:Z").Select
    Selection.Find(What:="K", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
        :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
        False, SearchFormat:=False).Activate
    cellvalue = ActiveCell.Value ' sets cell value to variable
    cellsmallvalue = Right(cellvalue, 2) 'Pull the right two characters
    cellsmallvalue = Left(cellsmallvalue, Len(cellsmallvalue) - 1) 'removes the last character "K"
    cellvalue = Left(cellvalue, Len(cellvalue) - 3) ' removes last 3 characters from string
    cellvalue = cellvalue & cellsmallvalue & "00" '3800
    ActiveCell.FormulaR1C1 = cellvalue 'set value

Loop
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Hello and Welcome,

This should run quite a bit faster...

Rich (BB code):
Sub Replace_Ks()
    Dim i As Long
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    For i = 0 To 9
        Range("C:Z").Replace What:="." & i & "K", Replacement:=i & "00", _
            LookAt:=xlPart, MatchCase:=False
    Next i
    Application.Calculation = xlCalculationAutomatic
End Sub

How is 2000 bytes listed? If it is shown as 2.0K the above code should work as is.
If it is shown as 2K then you would modify the code slightly...

Rich (BB code):
Sub Replace_Ks()
    Dim i As Long
    Application.ScreenUpdating = False
    Application.Calculation = xlCalculationManual
    For i = 1 To 9
        Range("C:Z").Replace What:="." & i & "K", Replacement:=i & "00", _
            LookAt:=xlPart, MatchCase:=False
    Next i
    Range("C:Z").Replace What:="K", Replacement:="000", _
           LookAt:=xlPart, MatchCase:=False 
    Application.Calculation = xlCalculationAutomatic
End Sub
 
Upvote 0
Your code worked beautifully! Times to find/replace went from 20 minutes to about 10 seconds!:eek:

Thanks for your help!
 
Upvote 0
Hi, first time poster here.

I'm working on parsing iostat information (it's a unix command to get disk information). It provides disk information in bytes, but when it gets to 1000 bytes it changes it to KB. For example, I'll have a data point that says 900 which mean 900 bytes and then another data point that says 1.1K which is 1100 bytes. Excel doesn't understand what the "K" means so I have to do a search for all cells that have a number followed by a "K" and then strip the "." and "K" out and add two zeros so that I have an actual number.

My issue is that the code I have in VBA is taking a long time to execute. When I have a large file (60,000 lines) there are over 20,000 instances with "K." The code runs an average of 565 "K" replacements per minute which will translate this to about 35 minutes to complete.

I don't have a lot of experience coding VBA so I did a mishmash of macro recording and things I found online.

Can someone let me know how I can optimize my code to do a faster search/modify/replace?

Thanks!

Here is my code:

Code:
Sub find_ks()
'
' find_ks Macro
'

Dim cellvalue As String
Dim cellsmallvalue As String
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
Do While 1 = 1


    Columns("C:Z").Select
    Selection.Find(What:="K", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
        :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
        False, SearchFormat:=False).Activate
    cellvalue = ActiveCell.Value ' sets cell value to variable
    cellsmallvalue = Right(cellvalue, 2) 'Pull the right two characters
    cellsmallvalue = Left(cellsmallvalue, Len(cellsmallvalue) - 1) 'removes the last character "K"
    cellvalue = Left(cellvalue, Len(cellvalue) - 3) ' removes last 3 characters from string
    cellvalue = cellvalue & cellsmallvalue & "00" '3800
    ActiveCell.FormulaR1C1 = cellvalue 'set value

Loop
Application.ScreenUpdating = True
Application.Calculation = xlCalculationAutomatic
End Sub

Here's my 2 cents:

Code:
Sub axonjacksn()
'
Dim lr As Long

Dim x As Long


Application.ScreenUpdating = False

On Error Resume Next

For x = 3 To 24

lr = Cells(Rows.Count, 3).End(3).Row

'
With Range(Cells(2, x), Cells(lr, x))
    
    .AutoFilter Field:=1, Criteria1:="=*K", Operator:=xlAnd
    .SpecialCells (xlCellTypeVisible)
    .Replace What:="K", Replacement:=".00"
    .Replace What:=".", Replacement:=""
    .AutoFilter
    
End With

Next x

Application.ScreenUpdating = True

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,214
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top