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 Use Excel AVERAGEIFS Function: 8 Suitable Examples

Method 1 - Using Single Criteria for Equal in Value in AVERAGEIFS Function Steps: Type the following formula in cell H6. ...

0
How to Use the Excel SUMPRODUCT Function (7 Examples)

Overview of the Excel SUMPRODUCT Function The SUMPRODUCT function is a powerful tool in Excel that allows you to calculate the sum of products of ...

0
How to Use RANDBETWEEN Function in Excel: 5 Ideal Examples

Method 1 - Getting Random Integers Look at the data set below. We have the names of 10 employees of Sunshine Group. Provide each employee with an ...

0
How to Use VLOOKUP Function in Excel (8 Suitable Examples)

  VLOOKUP Function of Excel (Quick View) The following image is a quick view of Excel VLOOKUP: Introduction to Excel VLOOKUP Function ...

0
How to Use the OFFSET Function in Excel (3 Methods)

Introduction to Excel OFFSET Function The OFFSET function allows you to start from a specific cell reference, move a certain number of rows down, then a ...

0
How to Use IFS Function in Excel: 3 Examples

Example 1 - Apply the IFS Function with Multiple Conditions to Calculate Grades Steps: Select cell D5 and insert the following IFS function: ...

0
How to Use Excel NETWORKDAYS.INTL Function (4 Examples)

Here's an overview of the NETWORKDAYS.INTL function with different settings. Excel NETWORKDAYS.INTL Function: Syntax & Arguments Summary ...

1
How to Use the DATE Function in Excel (10 Examples)

  Introduction to the DATE Function Function Objective: The DATE function creates a date from numeric values in the arguments. Syntax: ...

0
How to Sort Data Using a Formula in Excel – 2 Methods

This is an overview:     Method 1 -Using the SORT Function 1.1 Sorting in Ascending Order Select a blank cell. Enter the ...

0
Using the Sum, OFFSET and MATCH Functions in Excel – 4 Examples

Download Practice Workbook Download the workbook. Sum Using OFFSET and MATCH Functions.xlsx The sample dataset showcases the sales record of ...

0
How to Filter with Multiple Criteria in Excel (4 Easy Ways)

Excel FILTER Function: Overview We have the years, the host countries, the champion countries, and the runners-up countries of all the FIFA World Cups in ...

0
How to Get Top 10 Values Based on Criteria in Excel

We'll use a dataset with student Names and marks in Physics, Chemistry and History. Note that this article uses Excel 365. Some functionalities may be missing ...

0
How to Sum Top n Values in Excel (3 Suitable Ways)

Download the Practice Workbook Sum Top n Values.xlsx 3 Methods to Sum Top N Values in Excel Let’s sum up the top 5 sales from January in the ...

0
How to Return Multiple Values Based on a Single Criteria in Excel

In the example below we have the list of all the FIFA World Cups from 1930 to 2018. We have the Year in Column B, the Host Country in Column C, the Champion ...

0
How to Compare Rows for Duplicates in Excel (3 Easy Methods)

Method 1 - Find Duplicates in the Same Row but Different Columns to Compare Rows for Duplicates Option 1 - Decide in a New Column to Show Duplicates for the ...

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