Creating a table and fill value by looping

yxz152830

Active Member
Joined
Oct 6, 2021
Messages
387
Office Version
  1. 365
Platform
  1. Windows
Gurus,
i'm trying to fill values in tables created:
VBA Code:
Sheets("abc").ListObjects.Add(xlSrcRange, Cells(1000000, 1).End(xlUp).Offset(1, 0), , xlNo).Name = "ss" & day_week & "summary"

first problem is that i cannot use .databodyrange to fill in values by looping like this,error will occur:

VBA Code:
with table
for x =1 to matrix
   for y = 1 to matrix2
databodyrange(matrix*matrix2,1) = xxx
next y
next x
end with

i tried filling in the 1st value and found out basically the newly created table does not have databodyrange(1,1) so error occurs.
I also tried go further by typing in a random value in databodyrange(1,1) and see how things will go and it works

my solution would be adding a value in the blanked cell under the header to make it databodyrange(1,1)

how do I put that action in coding? Thanks in advance!
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
When you create a table like this, there is no DataBodyRange. If you try using

VBA Code:
Msgbox tbl.DataBodyRange.Address

you will get Runtime Error 91: Object variable or With Block variable not set error

At this moment there are no rows in the table. You can check that using

VBA Code:
Msgbox tbl.ListRows.Count

Add a row or column(if required) and then add the data. Here is an example

VBA Code:
Option Explicit

Sub Sample()
    Dim ws As Worksheet
    Dim tbl As ListObject
    Dim LRow As Long
    '~~> Test Value
    Dim day_week As String: day_week = "01"
   
    '~~> This is your worksheet
    Set ws = ThisWorkbook.Sheets("abc")
   
    With ws
        '~~> Find the last row to get the range
        LRow = .Range("A" & .Rows.Count).End(xlUp).Row + 1
       
        '~~> Create table
        Set tbl = .ListObjects.Add(xlSrcRange, .Range("A" & LRow), , xlNo)
    End With
   
    With tbl
        '~~> Set the name
        .Name = "ss" & day_week & "summary"
       
        'Debug.Print .ListRows.Count
       
        '~~> Add a new row
        .ListRows.Add
       
        '~~> Add Column if you want to
        '.ListColumns.Add
       
        '~~> Set value
        .DataBodyRange(1, 1) = "YOUR VALUE"
    End With
End Sub

1648543381815.png
 
Upvote 0
Solution
Given that it looks like you already know how many rows you need, size the table appropriately when you create it. That should be a lot faster than adding Listrows. It's probably faster still to populate the range (preferably using an array so you only write once) then convert that to a table when you're done.
 
Upvote 0

Forum statistics

Threads
1,213,564
Messages
6,114,334
Members
448,567
Latest member
Kuldeep90

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