How to highlight max and min value in every month in excel
Conditional formatting formula to highlight max value in every month:
Conditional formatting formula to highlight min value in every month:
Named ranges
Date_rng (A2:A169)
Close (B2:B169)
What is named ranges?
How to customize the formula to your excel spreadsheet
Change the named ranges.
Download excel sample file for this tutorial.
Highlight max and min value in every month.xls
(Excel 97-2003 Workbook *.xls)
Functions in this article:
IF(logical_test;[value_if:true];[value_if_false])
Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE
MONTH(serial_number) returns the month, a number from 1 (January) to 12 (December)
MIN(number1,[number2])
Returns the smallest number in a set of values. Ignores logical values and text
MAX(number1,[number2],)
Returns the largest value in a set of values. Ignores logical values and text.
Related blog posts
- Highlight duplicates on same date, week or month using conditional formatting in excel
- Highlight odd/even months using conditional formatting in excel 2007
- Highlight smallest duplicate value in a column using conditional formatting in excel
- Highlight duplicate values in a range using conditional formatting in excel
- Highlight duplicate values in two ranges combined using conditional formatting in excel







Leave a Reply