Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT TOP 1 Min(Date()+30+[DigitID]) AS FirstWeekDay
FROM Digits
GROUP BY Digits.DigitID
HAVING (((Digits.DigitID)<=3) AND ((DatePart("w",Date()+30+[DigitID])) Between 2 And 6));
SELECT Min(forms!formname!startdate+30+[DigitID]) AS FirstWeekDay
FROM Digits
GROUP BY Digits.DigitID
HAVING (((Digits.DigitID)<=3) AND ((DatePart("w",forms!formname!startdate+30+[DigitID])) Between 2 And 6));