Soumik Dutta

About author

Soumik Dutta, having earned a BSc in Naval Architecture & Engineering from Bangladesh University of Engineering and Technology, plays a key role as an Excel & VBA Content Developer at ExcelDemy. Driven by a profound passion for research and innovation, he actively immerses himself in Excel. In his role, Soumik not only skillfully addresses complex challenges but also demonstrates enthusiasm and expertise in gracefully navigating tough situations, underscoring his unwavering commitment to consistently deliver exceptional, high-quality content that adds significant value to users' experiences.

Designation

Excel & VBA Content Developer at ExcelDemy in SOFTEKO.

Lives in

Dhaka, Bangladesh.

Education

B.Sc. in Naval Architecture & Marine Engineering, BUET.

Expertise

Microsoft Office, C++, Python, Autocad, Rhinoceros, Maxsurf, Delftship, Abacus, Hydrostar, Solidworks, Omnis.

Experience

  • Technical Content Writing
  • Undergraduate Projects
    • Design of a 2100 DWT General Cargo Ship
    • Calculating the hydrodynamic co-efficient and motion of floating offshore structures

Achievement

  • Participated in ‘Techfest’ zonal round organized by ‘ESAB’ in 2018 and placed second runner up position in ‘Techfest’ final round executed in ‘Indian Institute of Technology (IIT)’ in 2018.

Latest Posts From Soumik Dutta

0
How to Fit All Columns on One Page in Excel (5 Easy Methods)

When we work with a large dataset in Excel, sometimes the dataset breaks into two pages. It is a common occurrence in our regular professional life. In this ...

0
How to AutoFill in Excel with Repeated Sequential Numbers

Autofill is an amazing feature of Excel. Using the Autofill feature, we can fill a large range of cells within a short period in several ways. In this article, ...

0
What Can You Do with Cell Value If Checkbox Is Checked in Excel?

The checkbox is a fantastic feature of Excel. Using these checkboxes, we can modify the cell values according to your desire. This article will demonstrate ...

0
Excel Gantt Chart with Conditional Formatting (2 Examples)

Gantt Chart is a widely used chart in the managemental branch of any organization. It displays the activities of that institution against the time scale. In ...

0
How to Add a Vertical Dotted Line in Excel Graph (3 Easy Methods)

Excel graphs are a familiar figure to all of us. Every day we use it to show the data pattern change according to our desire. Sometimes, we need to add a ...

0
How to Track Comp Time in Excel (with Quick Steps)

Compensatory time tracking is a vital element for any organization. Using this report, a company can provide their staff paid on leave in exchange for their ...

0
How to Speed up Excel Calculating 4 Processors (16 Effective Ways)

Excel is a versatile application. We can perform millions of calculations in Excel. However, when the datasheet contains a large number of data and ...

0
How to Analyze qPCR Data in Excel (2 Easy Methods)

qPCR is a sophisticated technology used to measure the amount of DNA in a sample by using PCR. qPCR stands for the term quantitative polymerase chain reaction. ...

0
How to Change Date Format in Excel Mail Merge (with Quick Steps)

Mail Merge is an outstanding feature of Microsoft Word. Using this feature of Microsoft Word and an Excel datasheet, we can create as many copies of documents ...

0
How to Format Addresses in Excel (4 Easy Methods)

When we copy some addresses from a different file, it is stored in a single cell. As a result, we need to format them in the perfect order for the convenience ...

0
How to Find Outliers with Standard Deviation in Excel (with Quick Steps)

Outlier is the exceptionally high or low value with respect to the other data of our dataset. We can easily find the outliers of a dataset using Microsoft ...

0
How to Create Proforma Invoice in Excel (Download Free Template)

Sometimes we need to create a proforma invoice for our organization. Using Microsoft Excel, we can easily make it. In this article, we will show you step by ...

0
How to Calculate Contribution Margin in Excel (2 Suitable Examples)

The Contribution Margin is the difference between the revenue and total variable cost. Contribution Margin or CM is a significant feature to measure the ...

0
How to Calculate Projected Cost in Excel (4 Effective Ways)

In our daily life, we need to project the expense and profit of any month or year for our company or living. Microsoft Excel has several functions and commands ...

0
How to Calculate Probability from Z-Score in Excel (with Quick Steps)

Z-Score is a parameter using which we can calculate the value of probability. Excel contains some formulas by which we can easily estimate the value of the ...

Browsing All Comments By: Soumik Dutta
  1. Hi Steven Leblanc
    Thanks for your comment. In this article, all the operations are done using Microsoft Office 365 application. That’s why you got a different type of result after using the TEXTJOIN function. If you want to get a similar type of result just like us, you have to update your application from Excel 2019 to Office 365.

  2. Hi Tom R,
    Thanks for your comment. The numeric values are not a big issue. Our main focus is to demonstrate the procedure so that you can understand it and implement it in your regular life. Moreover, we also recommend our users download our Excel workbook first to overcome such misunderstandings.
    However, we are providing an updated image of that part for your convenience.

  3. Hi Martyn Kenyon,
    Thanks for your suggestion regarding this issue. We hope that it will help others to resolve their problem.
    If you have any further queries or suggestions feel free to share them that us through comments or email to our problem-solving team.

  4. Hi, DIEGO.
    Thank you for your concern. Yes, there is a way to exclude some tabs and merge only the tabs that you want. The generic code for this is:

    Sub Merge_Multiple_Sheets()

    Row_Or_Column = Int(InputBox(“Enter 1 to Merge the Sheets Row-wise.” + vbNewLine + vbNewLine + “OR” + vbNewLine + vbNewLine + “Enter 2 to Merge the Sheets Column-wise.”))

    Merged_Sheets = InputBox(“Enter the Names of the Worksheets that You Want to Merge. Separate them by Commas.”)
    Merged_Sheets = Split(Merged_Sheets, “,”)

    Sheets.Add.Name = “Combined Sheet”

    Dim Row_Index As Integer
    Dim Column_Index As Integer

    If Row_Or_Column = 1 Then

    Column_Index = Worksheets(1).UsedRange.Cells(1, 1).Column
    Row_Index = 0

    For i = LBound(Merged_Sheets) To UBound(Merged_Sheets)
    Set Rng = Worksheets(Merged_Sheets(i)).UsedRange
    Rng.Copy
    Worksheets(“Combined Sheet”).Cells(Row_Index + 1, Column_Index).PasteSpecial Paste:=xlPasteAllUsingSourceTheme
    Row_Index = Row_Index + Rng.Rows.Count + 1 – 1
    Next i

    Application.CutCopyMode = False

    ElseIf Row_Or_Column = 2 Then

    Row_Index = Worksheets(1).UsedRange.Cells(1, 1).Row
    Column_Index = 0

    For i = LBound(Merged_Sheets) To UBound(Merged_Sheets)
    Set Rng = Worksheets(Merged_Sheets(i)).UsedRange
    Rng.Copy
    Worksheets(“Combined Sheet”).Cells(Row_Index, Column_Index + 1).PasteSpecial Paste:=xlPasteAllUsingSourceTheme
    Column_Index = Column_Index + Rng.Columns.Count + 1
    Next i
    Application.CutCopyMode = False
    End If
    End Sub

    When you’ll run the code, it’ll ask for two inputs. Enter 1 if you want to merge the sheets row-wise, or 2 if you want to merge them column-wise.
    And in the second input box, enter the name of the sheets that you want to merge. Don’t forget to put commas between the names, and don’t put any space after the commas.
    Once you are done entering the inputs, click OK. You’ll find your selected tabs merged row-wise or column-wise in a new sheet called “Combined Sheet”.
    Good luck.

  5. Hi Mikekelly
    Thanks for your query.
    The ‘Ctrl+J’ command doesn’t replace the line break. It represents the line break feature when we use the Find & Replace dialog box to find this character. Now, If you look at our dataset, it was designed with multiple line breaks in a column. So, I hope that both datasets follow the same characteristic. To eliminate the line breaks from your sheet, you can go through the methods mentioned in this article. Among them, methods no 2, 3, and 4 are pretty simple and convenient. Moreover, in these methods, you do not have to deal with the ‘Ctrl+J’ command.
    Let us know whether you can solve the issue. Please feel free to share with us if you have any further queries.

  6. Hi Yenny,
    Thanks for your query.
    You can use the calculated items option only for those fields which are available in our pivot table. Because if the field did not show in the pivot table, the corresponding field will also not show in the item section of the dialog box, which appears after clicking on Fields, Items, & Set,

  7. Thanks for your comment. We are very pleased to know that you find this article useful for you. As far as I know, Excel doesn’t have any built-in feature which can resolve your problem.
    I recommend that you can set the first line of every MS Word page as a heading. This feature will help you see the text in the Navigation Panel of MS Word. As a result, you don’t need to scroll down all pages. You will just click on each text, then select the text and manually copy that into your Excel workbook.

  8. Hi, Mark
    Thanks for your query. This might be a 1-60 months problem. Moreover, the complete scenario is a presumption of the author. So, the loan payment conditions may not be similar to the day-to-day practice situation. If you have specific terms and conditions in your loan statement, you can send that to our problem-solving team. They will help you to fulfill your requirement.

  9. Hi Tim,
    Thanks for your query. You are right. The combination of UNIQUE and RANDARRAY functions sometimes provide us with less than 10 number due to the duplicates. But, most of the time, it shows the 10 unique numbers on your first attempt. So, if you get less than 10 values, delete them and input the formula again. Once you get the 10 numbers, please copy and paste them in Value format asap to terminate further modification.
    Moreover, you can also look to our other methods if your dataset provides you with such flexibility to use them.

  10. Hi Amelie,
    Thanks for your comment. As your dataset doesn’t follow any regular pattern, so I think we need an additional column to solve this issue. The procedure is:
    1) First, insert a new column just right after your data column.
    2) Then, at the first cell of that column, write down ‘[Value].
    Here, the [Value] represents the data of the previous column.
    3) Now, double-click on the Fill Handle icon.
    4) The same result will be pasted on every cell. Click on the Auto Fill Options > Flash Fill option.
    5) The apostrophe will add to every cell value, and it will prevent the disappearance of zero (0) from your dataset.
    I hope you will be able to restore your cell values accurately. Please inform us if you are still facing any trouble.

  11. Hi Brennan,
    Thanks for your comment. You cannot use any function in the ‘criteria’ field of the COUNTIF function. You must have to input a specific text or value. Moreover, you have to mention a range of cells in the ‘criteria_range 1’ field, where the function count for your desired data. If you input a single cell instead of a range of cells, the COUNTIF function will not show the sum of the total count.
    You can consider some other Excel functions like VLOOKUP and TODAY functions to get the decision if your worksheet allows you to place the value of cells L5, O5, R5, U5, X5, and AA5 in the conjugative cells whether row-wise or column-wise. I am telling you the process below.
    First, set two criteria. As you want to show the value less or equal to 90 days, so you can set 90 for <= 90 days and 91 for >90 days.
    Then, using the VLOOKUP and TODAY functions, write down the formula:
    =VLOOKUP(TODAY()-[Cell Ref],Criteria,2,TRUE)
    Here,
    [Cell Ref] stands for your desired cell
    ‘Criteria’ is the table array name that I mentioned in the first step.
    2 is the col_indes_number. This number tells the function which column value of the criteria table we want to show.
    As you get the decision of the VLOOKUP function, whether it is more than 90 days or less than 90 days, use the COUNTIF function to get the total count of less than or equal to 90 days.
    =COUNTIFS([Cell Ref. Range,”<= 90 Days")
    Here,
    “<= 90 Days" is the desired criteria. For a better demonstration of this procedure, you can also look at one of our similar types of articles, How to Use Stock Ageing Analysis Formula in Excel.

    If you are still facing any problems, please inform us.

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo