How To Remove Conditional Formatting In Excel
Conditional formatting is a variable tool you could use to visualize your data and to see trends and patterns in your data. This feature makes it easy to highlight certain values or makes particular cells easy to identify when the data in that cell meets a specific criteria. For example, in the image below, the font color is red for all cells with values below 5.
How To Remove Conditional Formatting Using The Ribbon Option
For this guide, I will be working with the details of 15 students that took a class test. In my document, I highlighted students who got scores less than 80.
To Remove The Conditional Format of A Single Cell in Excel.
Notice that immediately we clicked CLEAR FORMATS, the red on number 63 in cell C9 cleared and went back to normal.
To Remove All Conditional Format In Excel.
For this section, I have a new data entry. It is a simple color scale format on the details of the profits a client’s five different websites made from January through the year till June.
Follow the steps below:
1.) Select text. Do not select all text in your document, just the ones with the format you want to remove.
2.) Repeat the last procedure.
This might seem confusing but it is exactly the same procedure as the last. My aim was to show that it works for all types of formatting, with complex finances or basic text scores.
Keyboard Shortcut To Remove Conditional Formatting
Now if you thought that last method was too much for you and still want a faster way to carry out this task, read on. There is a keyboard shortcut for this.
1.) On your keyboard, click CTRL + A once or twice depending on how the data is set up in the worksheet. Once is to select the immediate range or table, twice to make sure you capture everything if that is what you want. What I am saying here is that clicking once is if you wish to select a specific text(table or range) to remove its conditional formatting.
Basically, what happened here was that when we selected and clicked ALT + H, H was for the HOME tab in our Ribbon showing us the letter each section stands for, and to CLEAR FORMATS is under the EDIT section therefore the E. Then F for CLEAR FORMATS.
CTRL + A + ALT + H
CTRL + A + ALT + H + E
VBA To Remove Conditional Formatting From A Selection or Active Sheet
Removing conditional formatting using VBA programming is not as tough as you might have in your head right now. Once you've gotten past your doubt, follow my instructions. Here, I will be working with just our finance data entry for a website from January till June which is formatted to a color scale.
To Remove Conditional Formatting From A Selection
This should take you to where you will run a code.
Sub
RemoveConditionalFormattingFromRange()
Dim WS As Worksheet
Set WS = ActiveSheet
WS.Range("E2:E6").Cells.FormatConditions.Delete
End Sub
To Remove Conditional Formatting From An Active Sheet
Sub
RemoveConditionalFormatting()
Dim WS As WorkSheet
Set WS = ActiveSheet
WS.Cells.FormatConditions.Delete
End Sub
This removes conditional formatting from the active sheet. So if you run this code you will get the following result.
Sub
RemoveConditionalFormattingFromEntireColumn()
Dim WS As WorkSheet
Set WS = ActiveSheet
WS.Columns(3).Cells.FormatConditions.Delete
End Sub
.png)
.png)
%20-%20Copy.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
.png)
Comments
Post a Comment