Inserting Cells - A Better Way?

Katterman

Board Regular
Joined
May 15, 2014
Messages
103
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
  3. Web
Hello All

I have a small macro that i use to insert a cell if the character count is greater than 3 in a specific column of that row.
this is due to before that Insert occurs, a text To column (delimited by semi colon and coma) macro runs but since the source data is a bit flawed (and out of my control there) that often a piece of "Area" data is missing so the end result the data is a bit out alignment per row.
Sample data below. Rows 3 and 5 are correct. Rows 2 & 4 need to shift 1 to the right by Column B to realign data in Column C and beyond. After the shift Cells B2 & B4 can remain Blank. ( Note, The data is just Text and No Calcs are being done on this data sheet)

DateAreaOrder #Address
4/30/2018WO12345678123 Addressxxxx
4/30/2018SASWO12345678123 Address
4/30/2018WO12345678123 Addressxxxx
4/30/2018SASWO12345678123 Address

<tbody>
</tbody>


Final Result (There are more columns beyond "D" but not needed for the example display here.)

DateAreaOrder #Address
4/30/2018WO12345678123 Address
4/30/2018SASWO12345678123 Address
4/30/2018WO12345678123 Address
4/30/2018SASWO12345678123 Address

<tbody>
</tbody>

So This is the macro i run

Code:
Sub Insert_Cells()

    Dim r As Long

    Application.ScreenUpdating = False


    r = Cells(Rows.Count, 1).End(xlUp).Row
    
    For r = r To 1 Step -1
        If Len(Cells(r, 2)) > 3 Then Cells(r, 2).Insert Shift:=xlToRight, CopyOrigin:=xlFormatFromLeftOrAbove
    Next r
        
    Application.ScreenUpdating = True


End Sub

The problem is, that the data could be at least 40000 rows and aside for taking some time, Excel will run out of memory (Excel 2016 32bit and also another machine Excel 2016 64bit).

Right now to get around the macro failure, after a few minutes i will Halt the macro, save the sheet and restart the macro. Sometimes a couple times to save and restart depending if more that 40000 etc. That will end up completing the task but kind of defeats the Automation purpose of the macro.

Open to either better process or code if someone can help.

Thanks so much for all who read all this and also those who offer assistance.

Scott
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi Katterman

If the sheet is simply raw text, there isn't any reason that springs to mind that would prevent the macro simply running its course (the act of inserting cells is not instantaneous so over 40000 rows the macro will necessarily take some, but not an inordinate length of, time).

However, if it does seem to be taking much longer than anticipated, there may be another reason. You say "No Calcs are being done on this data sheet" - but are any other worksheets/cells referring to this data? If it is the case (and you are using a lot of formulae like SUMIFS/COUNTIFS/VLOOKUP/INDEX(MATCH) ) this will explain the delay in processing.

One way around this is to simply create a new workbook with this worksheet of data, apply the VBA to it, and then paste/special the reformatted data back into the original worksheet. You may need to re-align your formulae, but this may be a more efficient solve.

Cheers

pvr928
 
Last edited:
Upvote 0
Thanks for the reply pvr928

I adjusted the macro to turn off calcs while running ( then back on when done) and that seemed to speed things up but then i hit the out of memory error.
I then slipped in a "Save" into the macro and all then completed fine.

Seems like i'm good to go. Thanks for the assist. Much Appreciated.

Scott
 
Upvote 0
Hi @Katterman

Thought you mighta had something else going on :cool:

Glad to hear it's worked out for you.

The 'out of memory' error sounds like it is worth investigating as I don't believe it directly related to inserting cells. Are you using large strings or arrays, or is your workbook particularly large? Are you being explicit in the objects you are dimensioning? If you don't specify the object (ie [Dim sString] rather than [Dim sString as String], Excel will assign it as a Variant, which takes up more memory. If an Object is no longer required, release it by either:

Code:
Set SomeObject = Nothing

or if you are using Arrays:

Code:
Erase aArray

There are plenty of hits if you do a search on 'Excel out of memory'.

Cheers

pvr928
 
Upvote 0
Hello pvr928

Sorry for delayed response as i was away last week.

I will research the memory issues as you suggested

Thanks again for your help on this.


Scott
 
Last edited:
Upvote 0

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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