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.
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 ...
Method 1 - Calculating the Standard Error of the Regression Slope with a Scatter Chart in Excel STEPS: Select cell (B4:C9). Go to the ...
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 ...
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 ...
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 ...
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 ...
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 ...
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 ...
Complete the following steps before applying a macro to send email automatically. STEPS: From your dataset, go to the Developer tab. Select the option ...
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 ...
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 ...
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 ...
Method 1 - Use Generic Formula Calculate Conditional Weighted Average with Multiple Conditions in Excel STEPS: Select cell F13. Type the following ...
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 ...
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 ...

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