Rifat Hassan, BSc, Electrical and Electronic Engineering, Bangladesh University of Engineering and Technology, has worked with the ExcelDemy project for almost 2 years. Within these 2 years, he has written over 250 articles. He has also conducted a few Boot Camp sessions on effective coding, especially Visual Basic for Applications (VBA). Currently, he is working as a Software Developer to develop and deploy additional add-ins to enhance the customers with a more sophisticated experience with Microsoft Office Suits, especially Excel.
In this article, I’ll show you how you can develop and use a Yes No message box in VBA in Excel. Develop and Use a Yes No Message Box with Excel VBA ...
Overview: Sub Timestamp_When_a_Macro_is_Run() Timestamp_Sheet = "Sheet1" Timestamp_Column = "B" Set Timestamp_Range = ...
Excel VBA: Convert Formula to Value Automatically (Quick View) Sub Convert_Formula_to_Value_1() Sheet_Name = "Sheet1" Set Cell_Range = ...
In this article, I’ll show you how you can calculate age from the date of birth using VBA in Excel. VBA Code to Calculate Age from Date of Birth (Quick ...
VBA provides us with a built-in method called Wait. We’ll use this method to wait until the process completes. The problem is the method Wait takes a fixed ...
Method 1 - Edit the Display Text of a Macro Button in Excel Steps: We have to create a macro button in Excel. We named it "Run the Macro". The ...
While trying to edit a Macro, a notification box is displayed: The Macro is not in the active workbook, it’s in a different workbook that is hidden ...
This article will show you how you can select all the cells that contain data within a worksheet using Excel VBA. Excel VBA: Select All the Cells with ...
Here we’ve got three worksheets called Washington, New York, and California that contain the names, contact numbers, ages, and genders of some customers of ...
Step 1 - Open the Developer Tab in Excel Open an Excel workbook. Go to the Developer tab. If it's hidden, follow these steps to unhide it. Read ...
Sub Choose_Location_and_Save_as_PDF() PDF_Name = "MyPDF.pdf" Set File_Dialog = Application.FileDialog(msoFileDialogFolderPicker) ...
It’s an important issue for all of us while working with VBA in Excel, to turn off the screen update. In this article, I’ll show you how you can turn off the ...
One of the many things that we can accomplish using VBA in Excel is that we can check if a particular sheet exists in a workbook or not. In this article, I’ll ...
In this article, I’ll show you how you can write to a text file using VBA in Excel. How to Write to a Text File Using Excel VBA (Quick View) Sub ...
Excel VBA: Save a Worksheet as a New File (Quick View) Sub Save_Worksheet_as_New_File() Sheet_Name = "Sheet1" New_File = "New_Sheet1" Set ...

Hi Tim, thank you for your valuable response. You can declare the variables this way:
Dim File_Dialog as FileDialog
Set File_Dialog = Application.FileDialog(msoFileDialogFolderPicker)
Dim Sheet_Names(2) as Variant
Sheet_Names(0)=”Sheet1″
Sheet_Names(1)=”Sheet2″
Sheet_Names(2)=”Sheet3″
Dim New_File(2) as Variant
New_File(0)=”New_Sheet1″
New_File(1)=”New_Sheet2″
New_File(2)=”New_Sheet3″
But declaring variables beforehand is not mandatory in VBA. You can directly assign values to them as mentioned in the given codes.
Hi Nico,
Thanks for your response. You can use the FILTER function of Excel for your problem. Check this article for details https://www.exceldemy.com/excel-filter-multiple-criteria/.
Hi Veronika, if your problem isn’t solved yet, you can send the file to my mail or can send an image of your file. I’ll try.
Hi Arjun, the codes are absolutely flawless and there is no reason for them to not work properly. Did you insert the inputs correctly?
Hi Luis,
Thank you for your response. Hope this comes in handy for more people like you.
Hello Sam,
Thank you Sam for your response. It’s working fine now. Thank you again.
Hi Mohammed, Thanks for your response. Insert the name of the text and the color code in the 2nd and 3rd lines of the codes directly.
Hi Man, Thanks in advance. Can you please tell me where exactly the bug is? I have run the code in every way possible and there evolves no error. I think you couldn’t enter the inputs properly. Please go through the article again and then try. If it still doesn’t work, please tell me what exactly the error is.
Hi Dennis,
Thanks for your response. To skip the table name, first, remove the 4th line of the code, that is, Table_Name = InputBox(“Enter the Name of the Table: “).
Then enter the name of the table within the 6th line of the code. For example, if the name of your table is “Table1”, then the line should be: Set tbl = ws.ListObjects(“Table1”).
So the complete code will be:
Sub Add_Empty_Row()
Dim ws As Worksheet
Set ws = ActiveSheet
Dim tbl As ListObject
Set tbl = ws.ListObjects(“Table1”)
tbl.ListRows.Add
End Sub
I think the problem lies in the apostrophes. Use this code instead of yours. It works fine for me.
Sub InsertRowsfromUserInput()
Dim iRow As Long
Dim iCount As Long
Dim i As Long
iCount = InputBox(Prompt:=”How Many Rows to Insert?”)
iRow = InputBox _
(Prompt:=”Where to Insert New Rows? (Enter the Row Number)”)
For i = 1 To iCount
Rows(iRow).EntireRow.Insert
Next i
End Sub
If it still doesn’t work, after pasting the code in the VBA editor, change the apostrophes of the 5th and 7th lines manually. Hope it will work then.
Thank you Ana. It’s difficult to give any suggestions without having a glance at the workbook. Would you please kindly share your workbook with me?