Conditional formatting when text is contained in a named range

H

Hugh

I have a workbook in which sheet 1 contains employee assignments for the
upcoming week.

Sheet 2 contains several dynamic named ranges. I have one for each project
manager in the firm with a list of the projects currently assigned to them.

I want to create conditional formatting rules to change the cells on sheet 1
if data is contained in one of the named ranges.
 
O

OssieMac

Hello Hugh,

Use a formula in the Conditional format to count the cells in the named
range that have data in them. If greater than zero then at least one cell has
data.

Example assumes Manager1 is a named range.

=COUNTIF(Manager1,">""") > 0
 
H

Hugh

Thanks, that did the trick.

OssieMac said:
Hello Hugh,

Use a formula in the Conditional format to count the cells in the named
range that have data in them. If greater than zero then at least one cell has
data.

Example assumes Manager1 is a named range.

=COUNTIF(Manager1,">""") > 0
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top