Forum Discussion
Mspooner87
Feb 06, 2024Copper Contributor
Conditional Formatting based on another cell value
Hello! I'm working on a spreadsheet for work and would like to format a column to say "Already Done" if the value in a Cell on that line has an X or something similar. Help!
- Feb 06, 2024
Use a simple formula instead of conditional formatting:
=IF(COUNTIF(E2:K2, "X"), "Already Done!", "")
Fill down.
Mspooner87
Feb 06, 2024Copper Contributor
HansVogelaar this helps, but does not solve the problem of adding text
HansVogelaar
Feb 06, 2024MVP
Use a simple formula instead of conditional formatting:
=IF(COUNTIF(E2:K2, "X"), "Already Done!", "")
Fill down.
- Mspooner87Feb 07, 2024Copper ContributorThank you!! That did it!!