3 ways to highlight cells or rows in Excel
Microsoft Excel comes with a number of features that allow users to create spreadsheets from basic to advanced, making professional life easier. However, when dealing with large, complex data sets in Excel, it is easy to lose interest.
One easy way to simplify your spreadsheet is to highlight checkboxes and rows with checkboxes so that they stand out. The following article will discuss in detail different ways to do this.
Highlight cells or rows using VBA code
To highlight a cell or row in Excel that has a checkbox, the first method we will discuss involves using VBA code. VBA is basically a programming language in Excel that is used to automate tasks. You enter the code relevant to your requirement and Excel will do the task for you, saving you hours of manual work.
We all know that it takes hours in Excel when you have to do everything manually. VBA code handles large amounts of data to make this process easier for you. Follow these steps to proceed with this method:
1. Launch Excel and open the targeted worksheet.
2. Right-click on the Sheet tab at the bottom and select View Code from the context menu.
3. This will open the Microsoft Visual Basic for Applications dialog box . Copy the code mentioned below and paste it in the VBA window. You can modify the cell range, height and width as per your requirement.
Sub AddCheckBox()Dim cell As Range Application.ScreenUpdating = False For Each cell In Range("A1:A12") With ActiveSheet.CheckBoxes.Add(cell.Left, _ cell.Top, cell.Width = 17, cell.Height = 15) .LinkedCell = cell.Offset(, 5).Address(External:=False).Interior.ColorIndex = xlNone .Caption = "" End With Next With Range("A1:A12") .Rows.RowHeight = 17 End With Range("A1").EntireColumn.Select Selection.ColumnWidth = 6# Range("B1").Select Application.ScreenUpdating = True End Sub
Highlight cells or rows using Conditional Formatting
The next method on the list to highlight a cell or row is to use the Conditional Formatting option. Conditional Formatting allows users to modify the appearance of cells based on preferred criteria.
In this method, the article will apply a condition that will label the highlighted checkboxes as True and highlight them (this can be modified as per your requirement). The rest of the rows will be in a standard format, making it easy to differentiate between completed and incomplete tasks.
Here's how you can use Conditional Formatting to highlight a cell or row:
1. Before you can apply conditional formatting, you must add check boxes to your table. To do this, go to the Developer tab in Excel.
2. In the Controls section , select Insert and click the check box icon in the Form Controls section.
3. Add checkboxes to the cells you want.
4. Then, select the cell with the checkbox and drag the cursor to the bottom of the table. This will add the checkbox to all cells in the table.
5. Now, right-click on the first cell with the checkbox and select Format Control from the context menu. This will launch the Format Object dialog box.
6. Find the Cell link option and enter the name of the cell you want to link your first checkbox to. For example, our first checkbox is in cell H4 and we want to label the cell right before it, so we'll add I4 to the text field.
7. Click OK to apply the changes and perform the same steps for the rest of the check boxes in the table.
8. Once done, select the rows you want to highlight and click on the Conditional Formatting option in the Home tab.
9. Select New Rule from the context menu.
10. In the following dialog box, click Use a formula to determine which cells to format in the Select a Rule Type option .
11. Now go to Edit the Rule Description section and enter =IF($I4=TRUE,TRUE,FALSE) in the text field.
12. Click the Format button and choose a highlight color.
13. Then click OK to save the changes.
The selected rows or cells will be highlighted with conditional formatting.
Highlight rows with different colors using Conditional Formatting
Sometimes you want to highlight different rows with different colors to better organize your spreadsheet. Luckily, Conditional Formatting allows you to do that too.
For example, if you are listing your to-dos and want to highlight items that are due more than 30 and 45 days in duration, you can highlight such items in different colors. Here's how:
1. Select the rows in the table that you want to highlight (usually the entire data set).
2. In the Home tab and click the Conditional Formatting option.
3. Select New Rules.
4. In the following dialog box, select Use a formula to determine which cells to format in the Select a Rule Type section .
5. Enter the following formula in the text field for Format values where this formula is true . Remember that the article is applying the formula according to the example table. To make this method work in your case, you will have to change the values accordingly.
$C4>20
6. Click the Format button and choose a color.
7. Click OK to save the changes.
8. Finally, click OK again. Items older than 20 days will be highlighted.
9. Now, select the New Rule button again and click Use a formula to determine which cells to format under Select a Rule Type .
10. Enter the following formula in the Format values where this formula is true text field .
$C4>35
11. Click the Format button and choose a color.
12. Select OK.
13. Click OK again to save the changes.
This will help you highlight rows and cells with different colors in Excel. If you want to cross something out in your spreadsheet, you can strikethrough it in Excel.
Highlighting rows and cells in an Excel spreadsheet can have many benefits. In addition to bringing your spreadsheet to life, doing so makes your data easier to see.
You should read it
- How to use Highlight in Word - Create and delete Highlight in Word?
- How to Remove Spaces Between Characters and Numbers in Excel
- How to format data based on other cell conditions in Excel
- How to Compare Data in Excel
- How to use conditional formatting in Microsoft Excel 2016
- How to automatically create valuable cell borders in Excel
- How to copy and paste multiple highlight text at once in Word
- Instructions for coloring cells and text in Google Sheets
May be interested
- How to Sort Cells Alphabetically in Excelexcel is a powerful spreadsheet tool used to store and manage text or figures. alphabetical sorting is one of excel's useful features with the ability to help you sort, access and reference data quickly. to sort cells in excel alphabetically, simply double-click by highlighting the range of cells to sort, then click the 'az sort' or 'za sort' icon in the bar. standard tool. to sort cells alphabetically in excel using the advanced sort option, highlight the entire worksheet, click the 'sort' option from the 'data' menu. , then select the column and order you want to sort in the dialog box that appears.
- How to convert columns into rows and rows into columns in Excelyou need to convert excel columns into rows or convert data in excel rows into columns, if retraining takes a lot of time, just a trick that network administrator instructs below, you can turn the rows into columns or columns into rows extremely easy.
- How to Remove Spaces Between Characters and Numbers in Excelthis wikihow teaches you how to remove unwanted spaces from cells in an excel spreadsheet. highlight the range in which you want to remove all spaces. for example, if you want to remove spaces from c2 through c30, highlight those cells.
- How to Add Numbers Automatically in Excelthere are two different ways to add numbers to a column automatically. the surest way to add automatic number ranges to excel is to use the row function. this method will ensure that cells display the correct numbering even when rows are added or deleted. the second way (without typing the formula) is to use the fill feature, this method is easier but when you delete the line the number range will be missing. let's learn how to automatically number rows, or enter consecutive numbers in columns.
- How to use Focus Cell to highlight Excel dataexcel focus cell feature is one of the useful features, highlighting the row and column of the active cell, helping you keep track of your location in the spreadsheet for easier reading across rows and columns.
- How to Add Rows in Excel Using Formulasif you're looking for a quick way to add blank rows to an excel spreadsheet, you'll be surprised to learn that there's no excel function or formula that can do this. however, you can write a macro (a command that executes a certain job script) to instantly add a certain number of rows to the specified location. today's tipsmake will show you how to write a simple macro to add new rows to an excel spreadsheet. besides, the article also shows how to add existing formulas to new rows in the spreadsheet.
- MS Excel 2007 - Lesson 5: Edit Worksheetediting a spreadsheet in excel 2007 includes operations like: inserting cells, inserting rows / lines and inserting columns, deleting rows, deleting cells, deleting columns, finding data, replacing data or checking spelling, go to a certain cell in the spreadsheet.
- Change the width of columns and the height of rows in Excelthe default column widths and row heights in excel may not match the data you enter. you want to change the width, height of rows and columns so that data is displayed fully on cells in excel.
- How to Add Autonumber in Exceladding numbers automatically to a column in excel can be done in two ways, using the row function or the fill feature. the first method ensures that the cells display the correct row numbers even when rows are added or deleted. the second,...
- How to color formula cells in Excel automaticallycoloring formula cells in excel helps us quickly identify cells that use formulas in long data tables.