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
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 Do Interpolation with GROWTH & TREND Functions in Excel

In this tutorial, we will explain how to do interpolation in Excel with GROWTH & TREND functions. In mathematics, interpolation is a statistical strategy ...

0
Applications of Absolute Structured References in Excel Table Formulas

In this tutorial, we will explain the applications of absolute structured references in Excel table formulas. One thing you should know is that structured ...

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

The dataset contains information about the names of some employees and their delivery times & dates of products. We do not want the delivery time which is ...

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 ...

1
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. ...

1
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
Fix Circular Reference That Cannot be Listed in Excel (4 Easy Ways)

In this article, we will demonstrate how to fix the Excel circular reference that cannot be listed in Excel. It’s very intimidating if you get circular ...

0
How to Lock Cells in Excel When Scrolling (2 Easy Ways)

In this tutorial, we are going to show you how to lock cells in Excel when scrolling. After this article, you will be able to lock a specific range of cells ...

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.

Close the CTA

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo