1

I'm trying to highlight, via conditional formatting, multiple cells in column G2:Z based on the multiple dates in single cells in column C2:C.

sample sheet: https://docs.google.com/spreadsheets/d/1yPUUr24hAwFFcfWKdaknEA3vBmIvDNpscobLbMcHHtU/edit?usp=sharing

example

3
  • How you will detect missing dates as dates are entered as string in one cells. Commented Oct 22, 2021 at 5:09
  • @Harun24HR sorry, not quite sure what you're saying here. But =SPLIT(C3,CHAR(10)) will be able to split each date into separate cells. Commented Oct 22, 2021 at 5:14
  • Questions should be self contained. While external links are welcome(note: Google sheets exposes your email address), consider adding a table or screenshots or csv text(like this) to show your data structure. Commented Oct 22, 2021 at 8:42

1 Answer 1

2

Try:

=ArrayFormula(OR((SUBSTITUTE(SPLIT($C2, CHAR(10)), ".", "/")*1)=G$1))

enter image description here

Sign up to request clarification or add additional context in comments.

3 Comments

Hi @basic, could you please assist with this new iteration of the above conditional formatting issue? - docs.google.com/spreadsheets/d/…
@qazamy A different and more complex solution will be needed here, so ask a new question.
Thanks, @basic! Just submitted it - stackoverflow.com/questions/69768759

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.