there are no pictures.
you can make a simple filter for any form:
put a text box on the form (txtFind),
set the afterupdate event:
Code:sub txtFind_Afterupdate() If IsNull(txtFind) Then Me.FilterOn = False Else Me.Filter = "[ItemName] like '*" & me.txtFind & "*'" Me.FilterOn = True End If end sub
I reuploaded the pictures and changed the question...
can you please have a look to the question now?
I reuploaded the pictures and changed the question...
can you please have a look to the question now?
in the query design, dbl-click the field in the table, it will then appear in the query grid.
if you want to sort, click sort box and choose ASC, or DESC
this is basic access 101. Find a book on it for review.
What you are looking for is called an Aggregate query.
Maybe start with these sites:
SQL Aggregation queries using Group By, Sum, Count and Having
https://www.youtube.com/watch?v=IVMfDpCGwK4
Aggregate Queries Count Example Access 2013
https://www.youtube.com/watch?v=YE_7kchsqbA
SQL Using Aggregate Functions (Programming In Access 2013) by Steve bishop
https://www.youtube.com/watch?v=CgBcI8rq10k
Use Aggregate Functions in a Query
https://www.youtube.com/watch?v=hKIlwIVci5w
Aggregate Function Queries in Access – Tutorial and Instructions
https://www.teachucomp.com/aggregate...cess-tutorial/