How to edit this VBA line to an array for better optimization?

Indominus

Board Regular
Joined
Jul 11, 2020
Messages
160
Office Version
  1. 2016
Platform
  1. Windows
This full code pulls data from a work website into Excel. Can be up to 55000 rows. Currently on Excel 2019 it takes forever to run. Also uses between 33%-50% of cpu. On 2016 it worked fine. I use a code already that turns off all things like calculations, events, etc.

I am thinking an array would make it faster but not sure how to do that. When I press ESC during execution when it’s taking forever it’s always on one of the CallByName lines. Any help would be very appreciated. Thank you in advance!

VBA Code:
For Each key In keyring
   .Cells(Row, 1) = haul_id
   .Cells(Row, 2) = CallByName(CallByName(Json, key, VbGet), "ID", VbGet)
   .Cells(Row, 3) = CallByName(CallByName(Json, key, VbGet), "state", VbGet)
   .Cells(Row, 4) = CallByName(CallByName(Json, key, VbGet), "size", VbGet)
   .Cells(Row, 6) = CallByName(CallByName(Json, key, VbGet), "section", VbGet)
   .Cells(Row, 7) = CallByName(CallByName(Json, key, VbGet), "date", VbGet) 
   .Cells(Row, 8) = CallByName(CallByName(Json, key, VbGet), "cycle", VbGet)
 
   If CallByName(CallByName(Json, key, VbGet), "Area", VbGet) <> "" Then
   .Cells(Row, 5) = Split(CallByName(CallByName(Json, key, VbGet), "Area", VbGet), ".")(0)

    End If
    Row = Row + 1
    Next key

  Next line_haul
  End With

  Call LudicrousMode(False)
  End Sub
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Does keyring, whatever that is, have any sort of count property?

I'm not sure why you're using a nested callbyname so much. I'd have thought something like:

Code:
Dim o as Object
Set o = CallByName(Json, key, VbGet)

then you can probably use:
Code:
o.ID

instead of

Code:
CallByName(CallByName(Json, key, VbGet), "ID", VbGet)

and similarly for the other properties you need.
 
Upvote 0
Does keyring, whatever that is, have any sort of count property?

I'm not sure why you're using a nested callbyname so much. I'd have thought something like:

Code:
Dim o as Object
Set o = CallByName(Json, key, VbGet)

then you can probably use:
Code:
o.ID

instead of

Code:
CallByName(CallByName(Json, key, VbGet), "ID", VbGet)

and similarly for the other properties you need.
Hi. So the last line before the cut off cut off I posted is

set keyring = s.Run(“keys”, Json)

So I changed up the code like you said. However, I am getting the error 438, “object doesn’t support this property or method.”

Here it is.

VBA Code:
Dim o As Object

Set o = CallByName(Json, key, VbGet)



.Cells(Row, 1) = o.haul_id

.Cells(Row, 2) = o.id

.Cells(Row, 3) = o.state

.Cells(Row, 4) = o.size

.Cells(Row, 6) = o.section

.Cells(Row, 7) = o.date

.Cells(Row, 8) = o.cycle
 
Last edited:
Upvote 0
Based on your original code, the first two calls should actually be:

Code:
.Cells(Row, 1) = haul_id

.Cells(Row, 2) = o.Id

not:

Code:
.Cells(Row, 1) = o.haul_id

.Cells(Row, 2) = o.trackingId
 
Upvote 0
Based on your original code, the first two calls should actually be:

Code:
.Cells(Row, 1) = haul_id

.Cells(Row, 2) = o.Id

not:

Code:
.Cells(Row, 1) = o.haul_id

.Cells(Row, 2) = o.trackingId
Yes, that was my bad. I ended up just changing some names. Corrected. I am still seeing that error though. Using o as an object is not working for some reason
 
Upvote 0
Which line gives you the error?
 
Upvote 0
Which line gives you the error?
So I finally fixed it. First line I added
.Cells(Rows, 1) = o.haul_id when it should have been just haul_id.

However doing this did not increase the performance of the code at all. Been running for 7 minutes and it is still not done. Fastest I have seen it run is just under 1 minute on Excel 2016. Any other optimization that could be potentially done? Thank you by the way!
 
Upvote 0
Back to my original question: Does keyring, whatever that is, have any sort of count property? If it does, you can create an array of the appropriate size, populate that, then write it to the sheet in one hit, rather than going cell by cell which is always slow.
 
Upvote 0
Back to my original question: Does keyring, whatever that is, have any sort of count property? If it does, you can create an array of the appropriate size, populate that, then write it to the sheet in one hit, rather than going cell by cell which is always slow.
So not in the code. But I just set a
Debug.Print keyring after and the count is how many times the line_haul is in the data. So basically how many rows will be used for each line_haul. This can vary. For clarification, this code pulls the data for each shipment on an incoming vehicle. So if there are 2000 shipments on it, there will be 2000 ids, states, sizes, cycles, ead. And that is the number of keyring. Each vehicle can have a varying number of shipments on them. So this code loops through each line_haul to get the shipment data.

The debug.print keyring looks like
0,1,2,3,4,5,….

Debug.print key looks like
0
1
2
3
4
5
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,688
Members
449,117
Latest member
Aaagu

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