I have a spread sheet with a list of names for which there are a specified date ranges. What I'm trying to achieve is to get the name of the person whose date range falls within the current week.
So far I've come up with this query but it does not return the correct name. What it actually does is just return the first 2 names without any regard to the where clause conditions.
=QUERY(A2:C;"SELECT A WHERE B >= "&TODAY()&" AND C <= "&TODAY()+6&" LIMIT 0";2)
I can't figure out what could be the problem here.

