Zehad Rian Jim

About author

Zehad Rian Jim is a dedicated professional with a BSc. Degree in Naval Architecture and Marine Engineering from Bangladesh University of Engineering and Technology. He's good with Microsoft Office and has written more than 80 helpful articles for ExcelDemy in the last year. Now, he makes fun and easy-to-follow Excel tutorials for YouTube as part of the ExcelDemy Video project. Zehad loves figuring out Excel problems, and his passion for learning new things in Excel shines through in his work.

Designation

Video Content Creator at ExcelDemy in SOFTEKO.

Lives in

105/A Free School Street, Kathalbagan Bazar, Dhaka, Bangladesh.

Education

B.sc in DEPARTMENT OF NAVAL ARCHITECTURE AND MARINE ENGINEERING, BANGLADESH UNIVERSITY OF ENGINEERING & TECHNOLOGY

Expertise

Data Analysis, Content Writing, C, C++, AutoCAD, Microsoft Office.

Experience

  • Content Writing
  • Video Content Creating
  • Undergraduate Projects
    • Industrial Visit Planning Shipyard
    • Accident Prevention
    • Project on Ocean going Ship Details Analysis

Summary

  • Currently working as Video Content Creator of ExcelDemy YouTube Channel.
  • Started technical content writing of Excel & VBA in June 2022 later promoted as Video Content Creator.
  • I worked at Udvash as a Content Maker and Instructor from February 2017 to May 2022.
  • I am one of the founding members of an online education platform named “Utkorsho”.

Latest Posts From Zehad Rian Jim

0
How to Skip Cells in an Excel Formula – 8 Easy Methods

This is the sample dataset. Method 1 - Using the Filter Option Steps: Go to select the table > Data > Filter. This is the output. ...

0
How to Calculate GST in Excel (With Easy Steps)

Step 1 - Arranging Proper Dataset We have the Products in Column B and the Price Without GST in Column C. We have to create three important ...

0
How to Do Sensitivity Analysis in Excel (3 Easy Methods)

    Method 1 - Sensitivity Analysis with One-Variable Data in Excel Steps: Create a dataset like in the image below and mark the Gross ...

0
How to Use Macro to Save Excel File with New Name (5 Ways)

Method 1 - Keeping File in Current Location Press Ctrl+F11 to open the VBA. Go to the Insert option and select the Module. The VBA window will ...

0
How to Flip Data in Excel Chart (5 Easy Methods)

We’ll use a sample dataset with Salesperson in Column B and Sales in Column C. We'll flip the data in the dataset. Method 1 - Flipping Data Only ...

0
How to Convert Decimal to Time in Excel Using Formula

Excel by default stores time in decimal format. This tutorial will demonstrate how to convert decimal format to time format in Excel using formulas. We’ll use ...

0
How to Name a Table Array in Excel (With Easy Steps)

Step 1 - Creating a Table Array Arrange the dataset. In this case, we have the Salesperson in Column B and two years, 2021 and 2022, in Columns C and D. ...

0
How to Make Cricket Scorecard in Excel (with Easy Steps)

Step 1 - Creating Batting Scorecard Create a dataset like the below image. In this case, we have the Names in Column B, Runs in Column C, Balls in Column ...

0
How to Put a Negative Number in Excel Formula (4 Easy Methods)

We’ll use a sample dataset with random numbers in one column and will then convert them to negative numbers in the other one by applying negative numbers in ...

0
How to Edit XML File in Excel (With Easy Steps)

XML is a markup language mainly used for transferring data or records, or encoding particular documentation. This tutorial will demonstrate how to edit an XML ...

1
How to Create a Monthly Attendance Sheet in Excel Using Formula: 8 Steps

Step 1 – Creating a Month and Year Menu Go to any cell (i.e. C4) and insert the following formula: =Month Open another sheet and enter all ...

0
How to Show Print Area in Excel: 4 Easy Methods

Method 1 - Using File Tab Option Steps: Select the whole data table. Go to the File tab option. Select the Print option. Go to the Print ...

0
How to Compress Excel File to Smaller Size (7 Easy Methods)

Method 1 - Removing Irrelevant Worksheets/Data Steps: We arranged our desired Excel file. Check how many worksheets it contains and whether ...

0
How to Find Special Characters in Excel – 3 Easy Methods

Method 1 - Using the Power Query to Find Special Characters in Excel Steps: This sample table contains Global Trade Item Number in Column B and Special ...

0
How to Add 1 to Each Cell in a Column in Excel – 5 Methods

Method 1 - Using the Drag feature to Add 1 to Each Cell in a Column Steps: Create a dataset. In the two first cells (B5 and B6) of the column ...

Browsing All Comments By: Zehad Rian Jim
  1. Hello DESTINY,
    First, thanks for your curious question. It was amusing to solve the problem. Let me guide you to fulfill your query.

    Step 1. Assume you have a Dataset where you have the Names of the employees in one column and the types of the employees in another.
    1

    Step 2. Then insert the following code in the VBA window.

    Sub Copy_Rows_3()
    Dim r1 As Range, Row_Last As Long, sht As Worksheet
    Dim Row_Last1 As Long
    Dim src As Worksheet
    ‘Change this to the sheet with the data on
    Set src = Sheets(“Dynamic”)
    Row_Last = src.Cells(Cells.Rows.Count, “C”).End(xlUp).Row
    For Each r1 In src.Range(“C5:C13” & Row_Last)
    On Error Resume Next
    Set sht = Sheets(CStr(r1.Value))
    On Error GoTo 0
    If sht Is Nothing Then
    Worksheets.Add(After:=Worksheets(Worksheets.Count)).Name = CStr(r1.Value)
    ‘Sheets(CStr(r.Value)).Cells(1, 1) = “Total”
    Row_Last1 = Sheets(CStr(r1.Value)).Cells(Cells.Rows.Count, “B”).End(xlUp).Row
    src.Rows(r1.Row).Copy Sheets(CStr(r1.Value)).Cells(Row_Last1 + 1, 1)
    Sheets(CStr(r1.Value)).Cells(1, 2) = WorksheetFunction.Sum(Sheets(CStr(r1.Value)).Columns(3))
    Set sht = Nothing
    Else
    ‘Sheets(CStr(r.Value)).Cells(1, 1) = “Total”
    Row_Last1 = Sheets(CStr(r1.Value)).Cells(Cells.Rows.Count, “B”).End(xlUp).Row
    src.Rows(r1.Row).Copy Sheets(CStr(r1.Value)).Cells(Row_Last1 + 1, 1)
    Sheets(CStr(r1.Value)).Cells(1, 2) = WorksheetFunction.Sum(Sheets(CStr(r1.Value)).Columns(3))
    Set sht = Nothing
    End If
    Next r1
    End Sub

    N.B. if you are following our article, use the VBA code under the method “Copy Rows in Excel to Another Sheet Dynamically” and change the marked portions.

    2

    Step 3. After pressing Run, you will get the result in individual desired cells.

    3

    4

    Thanks


  2. At first, Create a dataset having Age in Column B, Fixed Amount in Column C and Principle At the Start of the period in Column D.
    Then, insert the following formula in cell D5 and use the Fill Handle option to apply it to all cells of column D.
    =B5*C5

    Finally, insert the following formula in cell E6 and use the Fill Handle option to apply it to all cells of column E to get the desired result.
    =E5*(1+0.02)+D6

    The excel file is added here according to your wish.
    Compound Interest Statement.xlsx
    Thanks and happy helping.

  3. Hello CALEY FORBES,
    Thanks for the amazing question. Let me guide you in solving this problem.

    First, I want to solve your first query. I think to solve your problem it is better to use our first method ‘Automatically Copy Rows in Excel to Another Sheet Using Filters’ method than using VBA code. The reason behind this is I think the first method will do your desired work without hesitation.

    For the second query, you have to insert the following formula in the VBA windows.

    Sub Cut_Range_To_Clipboard()
    Range(“B4:B10”).Cut ‘This will cut the source range and copy the Range “B4:B10” data into Clipboard
    ‘Now you can select any range and paste there
    Range(“J2”).Select
    ActiveSheet.Paste
    End Sub

    Note: in the Range section you can change the desired option to paste accordingly.

    I hope, your problem will be solved in this way. You can share more problems in an email at [email protected]
    Happy Excelling!!!

  4. Thanks Deep for your excellent and thoughtful question. Let me guide you to fulfill your query.
    We can easily extract multiple texts in cells by using different methods of this article but with slight changes.

    Suppose you have a dataset where the texts are separated only with hyphens. In this scenario, you should follow the first method in our article. The steps are:
    First, arrange the dataset where texts are separated with hyphens.
    Dataset if The Texts are Separated Only with Hyphens
    Second, insert the following formula.
    =MID(B5,FIND("-",B5)+1,LEN(B5))
    Insert the Following Formula

    Third, after pressing Enter button, you will get the result for this cell.
    Last, use the Fill Handle to apply it to all Cells.
    Final Result

    But in case, you have emails separated with @ or any other texts separated with special characters then you can use RIGHT, SEARCH & SUBSTITUTE Functions or LEFT, FIND & SUBSTITUTE Functions or RIGHT, REPT & SUBSTITUTE Functions from our article.
    Any of these methods will do the work for you. Let me guide you in detail with the steps.
    Firstly, you must arrange a dataset where multiple texts are separated with special characters.
    Dataset IF the texts are separated with special characters
    Next, use any of the following formulas in the D5 cell(described in our article)
    =RIGHT(B5,LEN(B5)-SEARCH("#",SUBSTITUTE(B5,C5,"#",LEN(B5)-LEN(SUBSTITUTE(B5,C5,"")))))
    or
    =SUBSTITUTE(B5,LEFT(B5,FIND(C5,B5)),"")
    or,
    =TRIM(RIGHT(SUBSTITUTE(B5,C5,REPT(" ",LEN(B5))),LEN(B5)))

    (Note: Please take a glimpse at our main article to understand the insertion of the formula)

    Afterward, after pressing Enter button, you will get the result for this cell. You will get the same result for any of the formulas so you can choose any of them.
    Last, use the Fill Handle to apply it to all Cells.
    Final Result

  5. Thanks, RICARDO SERRÃO for your two amazing queries. Let me help you out in solving your problems.
    First, we are going to discuss your first question. The problem you faced is about custom sorting.
    At the very beginning, we arranged a dataset of change in percentage.
    Dataset
    Then, as you wished we have used the COUNTIF function in this dataset.
    Formula Use
    As a result, we have found the values.
    Result
    Now, select Dataset> go to Data>Sort options.
    Sort Option
    After that, in the Sort window, select Change% in Sort By option, Cell Values in Sort On option, and Custom List in the Order option. Press OK to execute it.
    Sorting Window
    Furthermore, click on the NEW LIST option and write the condition manually in the List Entries area and press Add option.
    New List Add
    Because of that, you will get the desired condition in the Custom Lists section and press OK.
    New option in Custom
    Afterward, if you can see the desired condition in the Order box then press OK.
    Order
    Lastly, you will get the result accordingly. As in the condition, you have entered less than zero at first then zero to ten and at last greater than zero that’s why in the Excel section you will get the same order accordingly.
    Result
    So, that’s the solution to your first query. Now, Let’s go through your second problem.
    First, by reading your example, at first by using a formula, we created a Uniques Names list.
    Dataset
    Second, you have to write down the same unique names list in another column. The behind this is, in the array, you can’t use sorting.
    Write down unique names
    Third, then enter the Observations you made next to the new column.
    Observations
    Forth, as we want to sort, so we mark each name with a unique Id number in a new column.
    Id column
    Fifth, go to select the table>Data>Sort options.
    Sort Option
    Sixth, select the Id option in the Sort by option, and Cell Values in the Sort On option, click on the Largest to Smallest option in the Order section, and press OK.
    Sort Window
    Finally, you will get the desired result.
    Result
    So, this is the solution to your second query.
    Therefore, our journey comes to an end. The problems were very fun to solve and I really feel amazed by helping you. Thank you once again. Best of luck.

  6. Thanks, RON for your amazing question. Let me help you out in solving your problem. Please follow the below steps with us.
    First, we arranged a dataset and add an extra column(in this case Sales) in the same table as the below image.
    Dataset
    Then, insert the following formula in cell E5.
    =PRODUCT(C5,D5)
    Insert Formula
    After that, if you press the Enter button, then you will get the result for that cell, and afterward, use the Fill Handle option to apply the formula to all cells.
    Fill Handle
    Finally, you will get the desired result.
    Final Result
    So, I have tried to solve the problem to multiply the cells in the same table. If you face any other confusion, then we request you to provide the Excel file and give us the opportunity to help you out. All the best.

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo