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
How to Create Automatic Rolling Months in Excel – 3 Methods

  Consider the date: 2-May-19. To automate the dates with rolling months: Method 1 - Create Automatic Rolling Months Using the Fill Handle   ...

0
Using the INDEX MATCH Functions for Multiple Criteria in Rows and Columns in Excel – 2 Methods

The sample dataset showcases the Annual Examination Record of a school named The Rose Valley Kindergarten, Student Names in column B and their marks in ...

0
How to Count Date Occurrences in Excel (3 Methods)

Method 1 – Number of Occurrences of a Particular Date 1.1 Using the COUNTIF Function Steps: Select cell E5. Enter the following formula: ...

0
How to Find Unique Values from Multiple Columns in Excel (5 Easy Ways)

We have a record of student IDs and names. We want to extract the unique values. Method 1 - Extract Unique Values from Multiple Columns with Array ...

0
How to Round Numbers to the Nearest Multiple of 5 in Excel – 5 Methods

The dataset showcases students' average marks. Method 1 - Applying the ROUND Function to Round Numbers to the Nearest Multiple of 5 Steps: ...

0
How to Separate Text and Numbers in Excel (6 Suitable Ways)

  Let us have a look at this data set. We have the Combined Data of some students. We have two separate columns, C and D, where we want to extract the ...

0
How to Copy Formula Down Without Incrementing in Excel

We have the price record of various items of a company. The dataset contains Item Names, their prices, tax, and prices with tax in columns B, C, D, and E, ...

0
How to Add Leading Zeros in Excel – 11 Methods

This is the sample dataset. Method 1 - Applying the Text Format to Add Leading Zeros Steps: Select the cells to add leading zeros. ...

0
Use INDEX MATCH for Multiple Criteria Without Array (2 Ways)

In this article, we will demonstrate two quick methods to use the INDEX and MATCH functions in Excel to sort some data matching multiple criteria using a ...

0
How to Insert Dates in Excel Automatically: 4 Methods

Method 1 – The Most Basic Way to Insert and Format a Date in Excel In the dataset below, we have a list of the Names of Candidates for an upcoming interview ...

0
How to Change Cell Color Based on Date Using Excel Formula

We will use the following sample data set to demonstrate how to change the color of a cell based on the date. Method 1 - Change the Cell Color of ...

0
Excel Formula to Count Days from Date (5 Easy Methods)

  How to Add Dates in Excel Click on a cell and write any date inside it, in the conventional format, DD/MM/YYYY. Go to the Home and Number ...

0
How to Calculate Sales Growth Percentage in Excel

In this tutorial, we will demonstrate 3 approaches to calculate the sales growth percentage in Excel. Method 1 - Using the Basic Formula The basic formula to ...

0
How to Calculate Percentage of Sales in Excel (4 Examples)

Dataset Overview We have the sales record of January 2021 of a company named Sunflower group. We have three columns A, B, and C containing the Item Name, ...

0
How to Multiply a Column in Excel by a Constant (4 Easy Ways)

Watch Video – Multiply a Column by a Constant in Excel Let us use the following dataset. We have the employee records of a company. ...

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