I'm looking for a way to search for a cell within range of cells in a table using excel, so i need to look for Date-Time within a Range in table that has large amount of rows,
These pics attached show it all; the first pic shows what is the current scenario; I'm using the IF statement to know if the Date was found/Contained/included in range and If it was found then put "1" other than this put "0"
I have used this If statement before:
=IF(AND(AC5>=AE5,AC5<=AF5),"1","0")
But the thing is its comparing each Row by Row, not Cell by Row, That is unwanted, The thing is i want to compare each cell by all of the ranges in the table and upon this it puts "1" or "0".
Please find the attached screenshots to clarify the question : Current Scenario Example My Question
Any Solutions please?