Is it possible to combine conditionals to call out data?
I have a list of records that include a date. I can call out all dates
after the date after tomorrow:
IIf(Date()+1)<[date],...,...
And I can call dates before next week:
IIf([date]< Date()+7,...,.. .
But I'd like to isolate those that fall between the day after tomorrow
and next week. I was thinking that this would work, but it doesn't:
IIf((Date()+1)<[date]<(Date()+7),... ,...
Any hints?
I have a list of records that include a date. I can call out all dates
after the date after tomorrow:
IIf(Date()+1)<[date],...,...
And I can call dates before next week:
IIf([date]< Date()+7,...,.. .
But I'd like to isolate those that fall between the day after tomorrow
and next week. I was thinking that this would work, but it doesn't:
IIf((Date()+1)<[date]<(Date()+7),... ,...
Any hints?
Comment