Remember that Access is created by Microsoft, a US company. So you must use the US date format (or ISO) when using literal dates.
But in your case you can use the DateAdd function to add 1 day or 7 days to today. Something like:
select * from myTable where ApptStart > DateAdd('d', 1, Date())