Suppose I have a cell with whatever date and another cell with a few numbers defined manually. I want to check if some of those numbers matches the day that happen to be at one or the other moment.
The following formula works, but interprets only each individual digit and I don’t know how to either improve the formula and/or to write the string in a proper format so to interpret numbers:
=ISNUMBER(SEARCH(DAY(A1);A2))
For example, if A1 contains some DATE(YYYY;MM;DD) and A2 contains numbers 2 23 (or 2,23 or 2;23), then the formula gives TRUE when the day happens to be either 2 or 3 or 23.
What should I modify so the match be restricted to numbers instead of individual digits?