CptCrusty1
Programmer
Is it possible to create a query in QBE where one of the columns is an autonumber?
RK
RK
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 DatePart("yyyy", [OrderDate]) as SortYear, DatePart("mm", [OrderDate]) as SortMonth, Sum(Widgets)
from table
group by DatePart("yyyy", [OrderDate]), DatePart("m", [OrderDate])