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.
This article will show you why 3D reference in Excel is not working properly. Due to the orientation of data or the presence of any error value in cells, a 3D ...
This tutorial explains what a 3D reference is in excel and how we can use it. We will also learn how we can create a 3D formula to cluster data in various ...
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. ...
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 ...
Method 1 - Separate Numbers after a Particular Text with Excel Functions 1.1 Insert TEXTJOIN, IFERROR, MID, ROW, INDIRECT & LEN Functions STEPS: ...
This tutorial will demonstrate how to switch rows and columns in an excel chart. Suppose we are creating a chart in excel or working on an existing chart. ...
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 ...
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 ...
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 ...
In this tutorial, we will explain how to merge an excel file into mailing labels. Labeling is necessary for a variety of reasons, including marketing a ...
Example 1 - Insert a Single Column with a Name in Excel Using VBA The following dataset showcases sales data in different cities and in different dates. ...
Method 1 - Combine ROUND and RAND Functions to Generate Random 10 Digit Number STEPS: Enter the following formula in cell C5. ...
In this tutorial, we will show you how you can make gridlines darker in Excel. When we open a workbook Microsoft Excel automatically adds gridlines in each ...
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 ...
Method 1 - Combine SUM, OFFSET, ROWS & DAY Functions to Calculate MTD in Excel Suppose we have the following dataset of a fruit stall. The dataset ...

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.