Rifat Hassan

About author

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.

Designation

Software Developer in SOFTEKO.

Lives in

Dhaka, Bangladesh.

Education

B.sc in Electrical and Electronic Engineering (EEE), Bangladesh University of Engineering and Technology (BUET).

Expertise

Data Analysis, Content Writing, C, C++, Java, Python, JavaScript (Basic), VBA, vb.net, Microsoft Office.

Experience

  • Software Development
  • Technical Content Writing
  • Undergraduate Thesis

Summary

  • Currently working as Software Developer in SOFTEKO
  • Started technical content writing of Excel & VBA in June 2021 later promoted to Software Developer.
  • Accomplished Undergraduate thesis on Computer Simulation and Study of Real FineScenarios of Optical Fiber Using COMSOL MULTIPHYSICS.
  • Participated in Multiple Solo and Team Projects as a Part of Undergraduate Course Works, like Developing a Sensor Based Monitoring System for Disabled Persons, Developing a Booth Multiplier using Very Large Scale Integration (VLSI), etc.

Research & Publication

Latest Posts From Rifat Hassan

0
Excel VBA: Remove Duplicates from an Array (2 Examples)

In this article, we'll demonstrate how to remove duplicates from an array using Excel VBA code. VBA Code Quick View Sub Remove_Duplicates_from_Array() ...

0
How to Generate Random Numbers in a Range with Excel VBA

Here's a quick overview of the code that assigns random numbers. Sub Random_Numbers_with_Rnd() Bottom = 11 Top = 20 Random_Number = ...

0
Excel VBA: Add Hyperlink to Cell in Another Sheet (2 Examples)

In this article, we'll demonstrate how to add a hyperlink to a cell in another sheet using VBA in Excel. Excel VBA: Add Hyperlink to Cell in Another ...

0
How to Get Cell Value by Row and Column in Excel VBA

Get Cell Value by Row and Column in Excel VBA (Quick View) Sub Cell_Value_from_Whole_Worksheet() Value = Worksheets("Sheet1").Cells(7, 3) MsgBox Value ...

0
How to Pull Data from Multiple Worksheets in Excel VBA

In this article, we'll demonstrate how to pull data from multiple worksheets into one worksheet with Visual Basic of Applications (VBA) in Excel. Code ...

0
How to Use VBA for Each Row in a Range in Excel

In this article, we will demonstrate how to use Excel VBA to iterate through each row in a range effectively, where the rows contain either single or multiple ...

0
How to Sort Multiple Columns of a Table with Excel VBA (2 Methods)

In this article, we will describe how to sort multiple columns of a table using VBA in Excel, based on both a single column and multiple columns. Sort ...

0
How to Insert an Image into a Cell with Excel VBA (2 Methods)

Quick View Sub Insert_Single_Image() Image_Name = "Argentina" Image_Location = "E:\ExcelDemy\National Flags" Image_Format = ".png" Cell_Reference = ...

0
How to Keep Unique Values in a Drop Down List with Excel VBA – 3 Methods

Quick View: Sub Drop_Down_List_Unique_Values_At_Least_Once() List_Location = "B3" Data = Range(List_Location).Validation.Formula1 Data = Split(Data, ...

0
Excel VBA: Count Unique Values in a Column (3 Methods)

  Overview of the Code Sub Number_of_Values_that_Appear_Only_Once_1() Set Rng = Range("C4:C15") Count = 0 For i = 1 To Rng.Rows.Count     If ...

0
Excel VBA: Insert Formula with Relative Reference (3 Ways)

In this article, we'll discuss how to use Excel VBA to insert a formula with relative cell references in a single cell or a range of cells. Excel VBA to ...

0
Excel VBA: Complete Guide To Delete Row If Cell Is Blank

Method 1 - Run a VBA Macro to Delete a Row If the Cell Is Blank in a Single Column with Excel VBA We'll develop a Macro that’ll delete rows with blank cells ...

0
How to Copy Only Values to Destination with Excel VBA: 9 Step by Step Analysis

Method 1 - Copy Only Values to Destination with the PasteSpecial Method of Excel VBA ⧪ Step 1: Activating the Source Worksheet The 1st step that we need to ...

0
Run Time Error 1004 – PasteSpecial Method of Range Class Failed (4 Reasons and Solutions)

Reason 1 - Accessing PasteSpecial Method without Copying Anything The most common reason for this error is attempting to use the PasteSpecial method without ...

0
How to Concatenate Strings and Variables in Excel VBA (3 Examples)

Example 1: Developing a Macro to Concatenate string (s) and variable (s) in Excel VBA Here’s a dataset with book names, authors, and prices from a bookshop ...

Browsing All Comments By: Rifat Hassan
  1. 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.

  2. 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/.

  3. 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.

  4. Hi Arjun, the codes are absolutely flawless and there is no reason for them to not work properly. Did you insert the inputs correctly?

  5. Hi Luis,
    Thank you for your response. Hope this comes in handy for more people like you.

  6. Hello Sam,
    Thank you Sam for your response. It’s working fine now. Thank you again.

  7. 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.

  8. 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.

  9. 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

  10. 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.

  11. 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?

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo