+ Reply to Thread
Results 1 to 2 of 2

Create a variable number of tables in vba Excel

Hybrid View

  1. #1
    Registered User
    Join Date
    12-28-2013
    Location
    Portugal
    MS-Off Ver
    Excel 2013
    Posts
    1

    Create a variable number of tables in vba Excel

    How can I create a number of tables according to the number indicated in a cell?
    Exemple: If I introduce the number 3 in a cell » creates 3 ​​tables (exemple; with 3 rows and 4 lines). If I introduce the number 5 » creates 5 tables with the same number of rows and lines (3 rows and 4 lines)...

  2. #2
    Forum Guru HaHoBe's Avatar
    Join Date
    02-19-2005
    Location
    Hamburg, Germany
    MS-Off Ver
    work: 2016 on Win10 (notebook), private: 365 on Win11 (desktop), 2019 on Win11 (notebook)
    Posts
    8,198

    Re: Create a variable number of tables in vba Excel

    Hi, paulomonika,

    assuming that Range("A1") will be the cell in which you enter the number, right click on the worksheet tab, choose View Code and copy one of the following codes into the code windows (you may only have one event of that name behind a sheet). Sample1 is for putting tables under each other starting in Column A
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim lngCounter As Long
    
    Const clngIN_BETWEEN  As Long = 3     'space between the tables
    Const clngNO_ROWS     As Long = 3     'count of rows to insert
    Const clngNO_COLS     As Long = 4     'count of columns to insert
    
    If Target.Count > 1 Then Exit Sub
    If Not Intersect(Target, Range("A1")) Is Nothing Then
      If Not Target.Value = "" And IsNumeric(Target) Then
        For lngCounter = 1 To Target
          ActiveSheet.ListObjects.Add(xlSrcRange, _
              Range("A" & Rows.Count).End(xlUp).Offset(clngIN_BETWEEN, 0).Resize(clngNO_ROWS, clngNO_COLS), , _
              xlYes).Name = ActiveSheet.Name & Format(Now, "yymmddhhnnss")
        Next lngCounter
      End If
    End If
    End Sub
    Sample2 is for putting the tables next to each other in Row 1:
    Private Sub Worksheet_Change(ByVal Target As Range)
    Dim lngCounter As Long
    
    Const clngIN_BETWEEN  As Long = 3     'space between the tables
    Const clngNO_ROWS     As Long = 3     'count of rows to insert
    Const clngNO_COLS     As Long = 4     'count of columns to insert
    
    If Target.Count > 1 Then Exit Sub
    If Not Intersect(Target, Range("A1")) Is Nothing Then
      If Not Target.Value = "" And IsNumeric(Target) Then
        For lngCounter = 1 To Target
          ActiveSheet.ListObjects.Add(xlSrcRange, _
              Cells(1, Columns.Count).End(xlToLeft).Offset(0, clngIN_BETWEEN).Resize(clngNO_ROWS, clngNO_COLS), , _
              xlYes).Name = ActiveSheet.Name & Format(Now, "yymmddhhnnss")
        Next lngCounter
      End If
    End If
    End Sub
    Ciao,
    Holger
    Use Code-Tags for showing your code: [code] Your Code here [/code]
    Please mark your question Solved if there has been offered a solution that works fine for you

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 1
    Last Post: 03-05-2020, 11:37 AM
  2. [SOLVED] Create 10 similar tables with Excel VBA
    By kaligad in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 11-14-2013, 01:54 PM
  3. Create tables in Excel
    By ebbo in forum Excel General
    Replies: 0
    Last Post: 04-20-2009, 12:22 PM
  4. [SOLVED] My question is about Excel how to create tables by multiplication
    By BuckeyeBill in forum Excel General
    Replies: 6
    Last Post: 11-02-2005, 06:20 PM
  5. Variable number of rows to create graph
    By Smthian in forum Excel General
    Replies: 1
    Last Post: 03-02-2005, 02:17 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1