Forum Discussion
richzip505
Jul 26, 2024Copper Contributor
Highlight series of cells if 1st or last row contains text
Hello, I have a worksheet that contains a few rows for each employee. The ID # is in column A, and column E will contain a calculated numeric value. For each employee, I would like to highlight al...
- Jul 26, 2024
richzip505 You may use the following formula-
=IF(SUM(FILTER($E$2:$E$32,$A$2:$A$32=A2))>0,TRUE,FALSE)
Actually you don't need IF(). Just could try-
=SUM(FILTER($E$2:$E$32,$A$2:$A$32=A2))>0
Harun24HR
Jul 26, 2024Bronze Contributor
richzip505 You may use the following formula-
=IF(SUM(FILTER($E$2:$E$32,$A$2:$A$32=A2))>0,TRUE,FALSE)
Actually you don't need IF(). Just could try-
=SUM(FILTER($E$2:$E$32,$A$2:$A$32=A2))>0
richzip505
Jul 26, 2024Copper Contributor
Harun24HR Thank you, that works perfectly!