How to Add New Row Automatically in an Excel Table

แชร์
ฝัง
  • เผยแพร่เมื่อ 3 พ.ย. 2024

ความคิดเห็น • 29

  • @deec4294
    @deec4294 8 หลายเดือนก่อน +2

    very helpful. thank you!

  • @eagleview5267
    @eagleview5267 2 หลายเดือนก่อน +1

    Thank you this was easy and I was trying to make things harder than they needed to be!

    • @exceldemy2006
      @exceldemy2006  2 หลายเดือนก่อน

      Hello @eagleview5267,
      You are most welcome. We are glad it helped simplify things for you. Sometimes, keeping it simple really is the best approach! 😊
      Keep learning Excel with ExcelDemy!
      Regards
      ExcelDemy

  • @sajidahmed8107
    @sajidahmed8107 ปีที่แล้ว +1

    I really enjoyed the video, would appreciate it if you could upload more.

  • @Kevin-g3g1v
    @Kevin-g3g1v 28 วันที่ผ่านมา

    Is it possible to drag numbers of rows by VBA or a short-cut? 🙏🙏🙏

    • @exceldemy2006
      @exceldemy2006  27 วันที่ผ่านมา

      Hello @Kevin-g3g1v,
      You can drag and fill numbers in Excel using VBA or shortcuts.
      For shortcuts, you can use CTRL + D to fill down or CTRL + R to fill right.
      To automate this with VBA, use the following code.
      Sub DragFillRows()
      Dim ws As Worksheet
      Set ws = ThisWorkbook.Sheets("Sheet1") ' Change to your sheet name
      ' Define the range to fill
      Dim fillRange As Range
      Set fillRange = ws.Range("A1:A10") ' Change to your desired range
      ' Fill the range based on the first cell
      fillRange.FillDown
      End Sub
      Regards
      ExcelDemy

    • @Kevin-g3g1v
      @Kevin-g3g1v 27 วันที่ผ่านมา

      @@exceldemy2006 Thanks again!!! Can I point an active cell , drag and autofill from one row above the active cell, down certain numbers of rows? 🙏🙏🙏

    • @exceldemy2006
      @exceldemy2006  26 วันที่ผ่านมา

      Hello @Kevin-g3g1v,
      To autofill from one row above the active cell down a specific number of rows. Select the active cell where you want to start.
      Use this formula in VBA:
      ActiveCell.Offset(-1, 0).Copy Destination:=ActiveCell.Resize([number_of_rows], 1)
      This copies from one row above the active cell and fills down the specified number of rows.
      To do it manually;
      Copy the data above, select the cells below, and use the autofill handle to drag it down.
      Regards
      ExcelDemy

    • @Kevin-g3g1v
      @Kevin-g3g1v 26 วันที่ผ่านมา

      @@exceldemy2006 Thanks a lot!!!

    • @exceldemy2006
      @exceldemy2006  25 วันที่ผ่านมา

      Hello @Kevin-g3g1v,
      You are most welcome. keep learning Excel with ExcelDemy!
      Regards
      ExcelDemy

  • @Kevin-g3g1v
    @Kevin-g3g1v 28 วันที่ผ่านมา

    THANKS A LOT!!! How about add more than 1 row, 100 rows?

    • @Kevin-g3g1v
      @Kevin-g3g1v 28 วันที่ผ่านมา

      FIND it, 1:💯 😀

    • @exceldemy2006
      @exceldemy2006  27 วันที่ผ่านมา

      Hello @Kevin-g3g1v,
      Congratulations! Glad to hear that you found the solution. Feel free to reach out to ExcelDemy!
      Regards
      ExcelDemy

  • @MuhammadForhad-g7e
    @MuhammadForhad-g7e 5 หลายเดือนก่อน +1

    Thanks a lot

    • @exceldemy2006
      @exceldemy2006  5 หลายเดือนก่อน

      Dear, You are most welcome! Stay connected.

  • @noorhossainsorkar-xu7ml
    @noorhossainsorkar-xu7ml ปีที่แล้ว

    Good job

  • @gouravrathorr
    @gouravrathorr 4 หลายเดือนก่อน +1

    I want to use table new row inserted from above table.

    • @exceldemy2006
      @exceldemy2006  4 หลายเดือนก่อน

      Hello @gouravrathorr,
      if you want to use the above Table, you can download it from here:
      www.exceldemy.com/wp-content/uploads/2022/04/Excel_Table_Automatically_Add_New_Row-1.xlsm
      Then insert a new row by following the methods described in the video:
      To use a new row inserted in a table from an above table, you can set up your Excel so that any new row added to the table above is automatically included in your references or formulas. This can be done using structured references, which automatically adjust to include new rows.
      If you want you can follow the article also:
      www.exceldemy.com/excel-table-automatically-add-new-row/
      Regards
      ExcelDemy

  • @Kevin-g3g1v
    @Kevin-g3g1v 28 วันที่ผ่านมา

    Is it possible to add one row automatically every single day?

    • @exceldemy2006
      @exceldemy2006  27 วันที่ผ่านมา

      Hello @Kevin-g3g1v ,
      Yes it is possible. You will need to use VBA along with task schedular.
      You can use this VBA code to add a new row automatically in an Excel table every day:
      Sub AddRowDaily()
      Dim ws As Worksheet
      Set ws = ThisWorkbook.Sheets("Sheet1") ' Change to your sheet name
      Dim tbl As ListObject
      Set tbl = ws.ListObjects("Table1") ' Change to your table name
      ' Add a new row at the end of the table
      tbl.ListRows.Add
      End Sub
      To automate this, you need to use Windows Task Scheduler to run the macro daily.
      Schedule the Task:
      1. Open Task Scheduler on your computer.
      2. Select Create Basic Task.
      3. Name the task and select Daily for the trigger.
      4. Choose the time you want it to run.
      5. Select Start a Program and browse for your Excel application (usually located in C:\Program Files\Microsoft Office
      oot\OfficeXX\EXCEL.EXE, where XX depends on your Office version).
      6. In the Add arguments box, type /x "Path\to\your\file.xlsm" (replace with your actual file path).
      7. Click Finish.
      This will run the macro daily at the specified time.
      Regards
      ExcelDemy

    • @Kevin-g3g1v
      @Kevin-g3g1v 27 วันที่ผ่านมา

      @@exceldemy2006 THANK YOU SO MUCH!!!

    • @exceldemy2006
      @exceldemy2006  26 วันที่ผ่านมา

      Hello @Kevin-g3g1v,
      You are most welcome. Thanks for your appreciation. Keep exploring Excel tutorials with ExcelDemy!
      Regards
      ExcelDemy

  • @lisasmith7601
    @lisasmith7601 2 หลายเดือนก่อน +1

    But this doesn't work in 365. : ( If I down load the file to my computer, it works. I don't always want to download it. So frustrating.

    • @exceldemy2006
      @exceldemy2006  2 หลายเดือนก่อน

      Hello @lisasmith7601,
      We also used Microsoft Excel 365. Downloaded Excel file works but it doesn't works in your environment so it seems you might not have completed all the necessary steps in the "Options" settings for Excel 365.
      If not, may be this is the reason the method isn't working as expected. Please double-check the specific steps in the video from 00:48 to 1:36 related to the "Options" settings. Those are crucial for enabling the automatic row addition feature in Excel 365.
      To enable the feature where Excel automatically adds a new row to a table:
      1.Click on File >> select >> Excel Options >> navigate to the >> Proofing section,
      2. Then check >> Include new rows and columns in table and Fill formulas in tables to create calculated columns.
      Let us know if you need further assistance!
      Regards
      ExcelDemy

    • @lisasmith7601
      @lisasmith7601 2 หลายเดือนก่อน +1

      @@exceldemy2006 thanks!

    • @exceldemy2006
      @exceldemy2006  2 หลายเดือนก่อน

      Hello @lisasmith7601,
      You are most welcome. keep learning Excel with ExcelDemy!
      Regards
      ExcelDemy

  • @timkropf4648
    @timkropf4648 9 หลายเดือนก่อน

    Was that an AI video??? The speaker's broken English seemed to have flaws in the common broken English mistakes. It seemed liked it was a compilation of several broken English accents.

    • @timkropf4648
      @timkropf4648 9 หลายเดือนก่อน +1

      Great video though! Gave different methods for doing this that I found very useful. The method I'm using breaks sometimes. Will try some of the other ones shown here.

    • @exceldemy2006
      @exceldemy2006  7 หลายเดือนก่อน

      Dear @timkropf4648,
      Thanks for your appreciation. If you are facing any problem regarding any methods you can post it in our ExcelDemy Forum: exceldemy.com/forum/
      Regards
      ExcelDemy