VBA code to create multiple tables

Spaztic

New Member
Joined
Jul 27, 2023
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi, this may be extremely difficult but I thought I'd see if anyone can help me. I'm looking for a VBA code that automatically creates tables. Here is what I'm looking at:

Looking at the attached image,
  1. it would look at Column A and find the first cell with text (A3 in this case)
  2. it would then find the last row of text, in Column A, before the next blank (A6 in this case). Maybe it finds the blank in A7 and backs up to A6.
  3. it would create a table for A3:D6 (with A3, B3, C3, D3 as the headers)
  4. it would then find the next Column A cell that has text (A8 in this case). It probably needs to start at A7 to to find the next cell with text.
  • And it would do the same as above for creating another table
  • This would repeat until Column A doesn't contain any more text
Is this possible at all?
 

Attachments

  • auto-tables.png
    auto-tables.png
    47.4 KB · Views: 13

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
try this, i saw that your table has "Color" in column A as first cell of table so i create code to find all cell in column A that has same value and find all non-blank cell after that and set it to table:
VBA Code:
Sub CreateTable()
    Dim lr As Long, i As Integer
    Dim cll As Range, rng As Range
    With ActiveSheet
        lr = .Cells(Rows.Count, 1).End(xlUp).Row
        Set rng = .Range("A1:A" & lr)
        i = 0
        For Each cll In rng
            If cll.Value = "Color" Then 'find header row
                i = i + 1 'count table
                .ListObjects.Add(xlSrcRange, .Range(cll, cll.End(xlDown).Offset(, 3)), , xlYes).Name = "Table" & i 'create table
            End If
        Next cll
    End With
End Sub
 
Upvote 0
One last thing, is there a way to edit the code to format the tables automatically to be 'Table Style' = none"?
 
Upvote 0
One last thing, is there a way to edit the code to format the tables automatically to be 'Table Style' = none"?
you can change code like this:
VBA Code:
Sub CreateTable()
    Dim lr As Long, i As Integer
    Dim cll As Range, rng As Range
    With ActiveSheet
        lr = .Cells(Rows.Count, 1).End(xlUp).Row
        Set rng = .Range("A1:A" & lr)
        i = 0
        For Each cll In rng
            If cll.Value = "Color" Then 'find header row
                i = i + 1 'count table
                .ListObjects.Add(xlSrcRange, .Range(cll, cll.End(xlDown).Offset(, 3)), , xlYes).Name = "Table" & i 'create table
                .ListObjects("Table" & i).TableStyle = "" 'Change table style to none
            End If
        Next cll
    End With
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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