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
Lock a Cell after Data Entry Using Excel VBA with Message Box Notification Before Locking

In this article, we will use 2 methods to lock a cell after data entry using Excel VBA. To illustrate these methods we will use the dataset below. Users will ...

0
How to Create a Project Timeline in Excel (3 Simple Methods)

We will use the following dataset, which contains Milestones and metrics of the Effort of a project. Method 1 - Use the SmartArt Graphics Tool to ...

0
How to Use Excel Macro to Send Email Automatically  (3 Examples)

Complete the following steps before applying a macro to send email automatically. STEPS: From your dataset, go to the Developer tab. Select the option ...

0
How to Unprotect Excel Sheet If Forgot Password (4 Effective Methods)

We will use the following dataset that contains several different food types and their average price. Many commands under the Home tab are not available as the ...

0
Calculate Conditional Weighted Average with Multiple Conditions in Excel: 5 Easy Methods

Method 1 - Use Generic Formula Calculate Conditional Weighted Average with Multiple Conditions in Excel STEPS: Select cell F13. Type the following ...

0
How to Use Excel VBA to Import a CSV File without Opening (3 Methods)

To illustrate the methods, we will use the following CSV file. The file consists of three columns: Salesman, Product, and Sales. We will import the data from ...

0
How to Split Text by Number of Characters in Excel (8 Methods)

Method 1 – Using ‘Power Query’ The following dataset has one column showing codes. STEPS: Select any cell from the data range. Go to the Data. ...

0
How to Split Excel Sheet into Multiple Files (3 Quick Methods)

  Method 1 - Manual Approach to Split Excel Sheet into Multiple Files Method 1.1 Using Copy and Paste Options In the following dataset, we have sales ...

0
How to Extract Numbers after a Specific Text in Excel: 2 Suitable Methods

Method 1 - Separate Numbers after a Particular Text with Excel Functions 1.1 Insert TEXTJOIN, IFERROR, MID, ROW, INDIRECT & LEN Functions STEPS: ...

0
How to Remove a Space after a Number in Excel (6 Easy Ways)

The below dataset contains the names of 4 products and their codes. The product codes contain extra spaces after numbers. Method 1 – Using the TRIM ...

0
Generate Random Number with Mean and Standard Deviation in Excel

What Is Mean? The average of a group of values is known as the mean. It refers to a data set's values being distributed evenly. Generally, the mean measures ...

0
How to Use Multiple IF Conditions in Excel (3 Examples)

Example 1 - Nested IF Conditions We’ll apply a nested formula to handle multiple IF conditions in Excel. Consider a dataset where we want to set the grades ...

0
Insert a Column with a Name in Excel VBA – 5 Examples

  Example 1 - Insert a Single Column with a Name in Excel Using VBA The following dataset showcases sales data for different cities and in different ...

0
How to Generate Random 10 Digit Number in Excel (6 Methods)

Method 1 - Combine ROUND and RAND Functions to Generate Random 10 Digit Number STEPS: Enter the following formula in cell C5. ...

0
Excel VBA to Filter in Same Column by Multiple Criteria: 6 Methods

Method 1 - Remove Specific Values with VBA to Filter in the Same Column by Multiple Criteria in Excel STEPS: Right-click on the worksheet tab named ...

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