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 Type Minus Sign in Excel Without Formula: 6 Methods

Method 1 - Apply Insert Tab to Type Minus Sign in Excel Without Formula STEPS: Select cell C5. Go to the Insert tab. From the Symbols section ...

0
How to Calculate a Standard Error of Regression Slope in Excel

  Method 1 - Calculating the Standard Error of the Regression Slope with a Scatter Chart in Excel STEPS: Select cell (B4:C9). Go to the ...

-1
How to Import Stock Prices from Yahoo Finance into Excel – 3 Easy Steps

  STEP 1 - Create a Query Create a query to import historical stock prices from Yahoo! Finance of a specific company. Here, Microsoft’s historical stock ...

0
How to Make an Eisenhower Matrix Template in Excel (With Easy Steps)

  In an Eisenhower Matrix, we will have two parts. One part is the data section of the template. The data section will contain two parameters named ...

0
How to Set Decimal Places in Excel with Formula (5 Ways)

Suppose we have a dataset that contains values with five decimal places, but we want to only display two decimal places. In this article, we demonstrate 5 ...

1
How to Generate a Report in PDF Format Using Excel VBA – 3 Methods

The dataset showcases a sales report. It contains the name, city, and sales amount of different people. Method 1 - Using Excel VBA to Add a Command ...

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

1
How to Protect Formulas but Allow Copy in Excel (3 Simple Methods)

This tutorial will demonstrate how to protect Excel formulas but will allow you to copy them. Suppose, we will share our Excel file with other users. Our Excel ...

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
How to Replace Text with Blank Cell in Excel (5 Simple Methods)

This tutorial will demonstrate 5 simple methods to replace text with a blank cell in Excel. When working with a dataset, we may need to eliminate specific cell ...

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 Calculate Weighted Average in Excel (3 Easy Methods)

This tutorial illustrates three easy methods to calculate the weighted average in Excel. While evaluating a simple average of a group of numbers, we assume ...

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

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