A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Turn off AutoFilter.
If you have any Conditional Formats set, select Conditional Formating -> Manage rules and then select and delete any existing rules you have attempted to create and are not working properly. (Alternatively Select Clear rules in lieu of Manage Rules.)
Select all data to which Conditional Format is to be applied. (In your case from previous posts I assume this is A2:G153**. Do not include column headers**.)
Select Conditional Formating -> New Rule
Select Use formula to determine which cells to format.
Enter the following formula in the field under **Format values where this formula is true.**Edit the column Id in the formula to the column Id that contains the Priority. (I have used column C.) Note the $ sign so that the column is absolute but no dollar sign preceding the row because the row needs to be relative.
=$C2=1
Click Format button and then Font tab and select Bold and select required color.
Click OK and OK again to complete.
Explanation:
Conditional format formula is entered as if it is being applied to only one cell in the first row and Excel looks after applying that formula to the remaining selected cells.
The absolute addressing of the column (with the $ sign) is so that as the formatting is applied across the columns, the column being tested for value 1 is locked to the same column and will not change across the other columns.
The row number needs to change down the data so it is relative (with no $ sign).
Hope this helps. Feel free to get back to me. However, if you do, please answer the following questions.
What is the range of data to which the conditional formatting is to be appied?
What column contains the priority.