Mukesh Dipto

About author

Mukesh Dipto is an excellent marine engineer who loves working with Excel and diving into VBA programming. For him, programming is like a superhero tool that saves time when dealing with data, files, and the internet. His skills go beyond the basics, including Rhino3D, Maxsurf C++, AutoCAD, HTML, CSS, JavaScript, and WordPress. He got his B.Sc in Naval Architecture & Marine Engineering from BUET, and now he's switched gears, working as a content developer. In this role, he creates techy content all about Excel and VBA. You'll find him reading books, travelling, and enjoying movies and TV series outside work.

Designation

Excel & VBA Content Developer at ExcelDemy in SOFTEKO.

Lives in

Dhaka, Bangladesh.

Education

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

Expertise

Microsoft Word, Excel & VBA, PowerPoint, Microsoft Power BI, AutoCAD, Rhinoceros, HTML, CSS, JavaScript, WordPress

Experience

  • Resource Person at Directorate of Primary Education, Bangladesh, Dhaka.

Research

  • Maritime risk assessment of LNG carrier in Bangladesh using Fuzzy Logic Approach.

Latest Posts From Mukesh Dipto

0
How to Calculate MTD (Month to Date) in Excel (3 Methods)

Method 1 - Combine SUM, OFFSET, ROWS & DAY Functions to Calculate MTD in Excel Suppose we have the following dataset of a fruit stall. The dataset ...

0
Excel VBA to Select Used Range in Column (8 Examples)

In the following image, we can see the dataset that we will use for all the examples. The dataset contains the names of Salespeople, their Location, Region, ...

0
How to Use VBA to Loop Through Rows in Range in Excel (6 Examples)

    Method 1 - Using Excel VBA Macro with Range Variable to Loop Through Rows STEPS: Go to the active worksheet ‘Range Variable’. ...

0
How to Remove Text between Two Characters in Excel (3 Easy Ways)

In this tutorial, we will explain how to remove text between two characters in Excel. Suppose you are working with a list of text strings where you want to ...

0
The Workbook Contains Links to One or More External Sources That may Be Unsafe – 3 Solutions

  Solution 1 - Fix ‘This Workbook Contains Links to One or More External Sources That Could Be Unsafe’ Error with Automatic Update and No Message The ...

0
How to Return Row Number of a Cell Match in Excel (7 Methods)

If you're working with huge datasets and extensive search functions, you might need to locate a specific row to find additional information for a given object. ...

0
How to Hide Formula in Excel without Protecting Sheet (2 Methods)

The sample dataset consists of sales of six salespeople in January and February. We can see the total sales in another column. We'll hide the formulas. ...

0
FIND Function Not Working in Excel (4 Reasons with Solutions)

Overview of the FIND Function Description The FIND function is used to locate a particular character or substring inside a text string Generic ...

1
[Fixed!] Formula Result Showing 0 in Excel (3 Solutions)

  Fix 1 - Fix Formula Result Showing 0 by Converting Text to Number You'll need to check the data in the dataset that is being used in the formulas. ...

0
How to Apply Multiple Data Validation in One Cell in Excel: 3 Methods

Method 1 - Apply Multiple Data Validation in One Cell in Excel with Specific Criteria STEPS: Combine the criteria formulas in a nested formula in cell ...

0
How to Use Excel Formula to Find Last Row Number with Data: 2 Easy Ways

In this article, we will use an Excel formula to find the last row number with data for two cases – either when the last row is blank or when it is non-blank. ...

0
How to Combine Rows from Multiple Sheets in Excel (4 Methods)

Method 1 - Use Consolidate Option to Combine Rows from Multiple Excel Sheets The Consolidate feature is the quickest way to combine rows. But we can only ...

0
How to Find Blank Cells in Excel (8 Easy Ways)

Method 1 - Use Go To Special Dialogue Box to Find Blank Cells in Excel In the below screenshot, we have the attendance of 6 students for 3 days. We can see ...

0
How to Use Advanced Filter to Copy Data to Another Sheet in Excel

Usually, the advanced filter option allows us to extract data from a data range with respect to multiple conditions. We can use the advanced filter in Excel to ...

0
Delete Sheet Not Working in Excel (2 Solutions)

Solution 1 - Unprotect Workbook Structure While Delete Sheet in Excel is Not Working Overview If you’re unable to delete a sheet in Microsoft Excel, the ...

Browsing All Comments By: Mukesh Dipto
  1. Hello Ruby,
    Thanks for your query. If you do not want to see the formula for a blink then you have to do it by protecting the worksheet. You can try the following code:
    Sub HideFormulasDisplayValues()
    With ActiveSheet
    .Unprotect
    .Cells.Locked = False
    .Cells.SpecialCells(xlCellTypeFormulas).Locked = True
    .Cells.SpecialCells(xlCellTypeFormulas).FormulaHidden = True
    .Protect AllowDeletingRows:=True
    End With
    End Sub

  2. Thanks for your feedback sir.
    The range is (>=50 and <=80). In Excel COUNTIF function by default omit the upper end value.
    So, the formula is basically showing the result for the values less than 80.

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo