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.
In the following dataset, we have qualitative data for two questions from a survey about people's preferences in movies. We will convert this qualitative data ...
This tutorial will show you how to make address labels in Word from Excel. Labelling is essential in terms of marketing a product, tagging the address of a ...
What Is a Grouped Bar Chart? A grouped bar chart is also known as a clustered bar chart. It displays the values of various categories in different time ...
In the following image, you can see the final template. We will create this template using step-by-step procedures. Step 1 - Create Information ...
This tutorial will demonstrate how to create a tally salary slip format in Excel. For a professional, it is very important to understand what a salary slip is. ...
Dataset Overview Our dataset contains feedback on four questions from different individuals, with unique ID numbers assigned to each person. Step 1 ...
Let's consider a simple example where we have the cost of obtaining some products and want to calculate the selling price based on the required margin. The ...
This tutorial will illustrate how to find Chi-Square critical values in Excel. Suppose we will perform a Chi-Square test. As a result, we will get a test ...
What Is a Swimlane Flowchart? A Swimlane Flowchart is a dynamic tool. It allocates tasks and defines deadlines in a business process. This particular ...
This tutorial will show how to calculate Manhattan distance in Excel. From the name, we can get an assumption that it is named after the famous city Manhattan ...
This tutorial will demonstrate how to print notes in Excel. In Microsoft Excel 365, we use notes as reminders. The notes in Excel 365 look like sticky notes in ...
The following dataset has 2 cell ranges. The lower range (B11:C14) contains the names of some fruits and corresponding prices. The upper range (B5:C8) is ...
The following dataset contains the sale amounts of different salespeople. Method 1 - Using Excel VBA Macro to Save Active Worksheet as PDF in a ...
The following dataset contains the names of students in a column. We’ll restrict the data entry in the Project Code column. Method 1 - Using Data ...
Sometimes while working with a big dataset we need to repeat rows in Excel when scrolling. This feature helps to keep important rows visible during the time of ...

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.