473,289 Members | 1,829 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,289 software developers and data experts.

Advanced Filter/Sort window -- where is it?

This is directly from Access' Help:

"About designing a query
When you open a query in Design view, or open a form, report, or datasheet and
show the Advanced Filter/Sort window (Advanced Filter/Sort window: A window in
which you can create a filter from scratch. You enter criteria expressions in
the filter design grid to restrict the records in the open form or datasheet to
a subset of records that meet the criteria.), you see the design grid, which
you can use to make a variety of changes to get the query results you want."

Once I have clicked on the Report Tab, and I have a report I have already
created, how do I show the Advanced Filter/Sort window, so I can include only
the records in the report that meet a certain criteria?

Thanks

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com
Nov 13 '05 #1
4 5098
The Advanced Filter/Sort window is applicable to forms, not reports.

In Form view, it's available through the Records menu.

You may be able to use it to filter your form as you wish, and then apply
the Filter of the form as the WhereCondition for OpenReport.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Nhmiller" <nh******@aol.comnojunk> wrote in message
news:20***************************@mb-m28.aol.com...
This is directly from Access' Help:

"About designing a query
When you open a query in Design view, or open a form, report, or datasheet
and
show the Advanced Filter/Sort window (Advanced Filter/Sort window: A
window in
which you can create a filter from scratch. You enter criteria expressions
in
the filter design grid to restrict the records in the open form or
datasheet to
a subset of records that meet the criteria.), you see the design grid,
which
you can use to make a variety of changes to get the query results you
want."

Once I have clicked on the Report Tab, and I have a report I have already
created, how do I show the Advanced Filter/Sort window, so I can include
only
the records in the report that meet a certain criteria?

Thanks

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com

Nov 13 '05 #2
On the OnOpen event of the report:

docmd.filterOn = true
me.filter = forms!formname.form.filter

This will display all the records from your form in the report. Just base
your report on the same query as the form.

HTH
Paul

"Allen Browne" <Al*********@SeeSig.Invalid> wrote in message
news:41**********************@per-qv1-newsreader-01.iinet.net.au...
The Advanced Filter/Sort window is applicable to forms, not reports.

In Form view, it's available through the Records menu.

You may be able to use it to filter your form as you wish, and then apply
the Filter of the form as the WhereCondition for OpenReport.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Nhmiller" <nh******@aol.comnojunk> wrote in message
news:20***************************@mb-m28.aol.com...
This is directly from Access' Help:

"About designing a query
When you open a query in Design view, or open a form, report, or
datasheet and
show the Advanced Filter/Sort window (Advanced Filter/Sort window: A
window in
which you can create a filter from scratch. You enter criteria
expressions in
the filter design grid to restrict the records in the open form or
datasheet to
a subset of records that meet the criteria.), you see the design grid,
which
you can use to make a variety of changes to get the query results you
want."

Once I have clicked on the Report Tab, and I have a report I have already
created, how do I show the Advanced Filter/Sort window, so I can include
only
the records in the report that meet a certain criteria?

Thanks

Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com


Nov 13 '05 #3
>The Advanced Filter/Sort window is applicable to forms, not reports.

But the Help section, quoted below, says it is supposed to be available for
reports. Could you clarify what the Help statement means, or is it in error? In
the meantime, I'll try your suggestion. I would think this would be a standard
procedure -- that an already designed report should be able to show only
records that meet a certain criteria. I continue to be astonished at the
non-user-friendliness of Access compared to Lotus Approach, the 10 year old
datebase program I was using. Thanks.

In Form view, it's available through the Records menu.

You may be able to use it to filter your form as you wish, and then apply
the Filter of the form as the WhereCondition for OpenReport.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Nhmiller" <nh******@aol.comnojunk> wrote in message
news:20***************************@mb-m28.aol.com...
This is directly from Access' Help:

"About designing a query
When you open a query in Design view, or open a form, report, or datasheet
and
show the Advanced Filter/Sort window (Advanced Filter/Sort window: A
window in
which you can create a filter from scratch. You enter criteria expressions
in
the filter design grid to restrict the records in the open form or
datasheet to
a subset of records that meet the criteria.), you see the design grid,
which
you can use to make a variety of changes to get the query results you
want."

Once I have clicked on the Report Tab, and I have a report I have already
created, how do I show the Advanced Filter/Sort window, so I can include
only
the records in the report that meet a certain criteria?

Thanks


Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com
Nov 13 '05 #4
Hi Neil. The Help file is wrong.

I can see the topic in A2003 help, under:
Creating and Working with Databases and Objects
Datebase Objects
Queries
Creating Queries
About designing a query (MDB)

The subtopic under "Advanced Filter/Sort window" correctly states:
(Advanced Filter/Sort window: A window in which you can create a
filter from scratch. You enter criteria expressions in the filter design
grid to restrict the records in the open form or datasheet to a subset
of records that meet the criteria.)

However the main topic is wrong in stating that the window can be used for
reports.

--
Allen Browne - Microsoft MVP. Perth, Western Australia.
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"Nhmiller" <nh******@aol.comnojunk> wrote in message
news:20***************************@mb-m02.aol.com...
The Advanced Filter/Sort window is applicable to forms, not reports.


But the Help section, quoted below, says it is supposed to be available
for
reports. Could you clarify what the Help statement means, or is it in
error? In
the meantime, I'll try your suggestion. I would think this would be a
standard
procedure -- that an already designed report should be able to show only
records that meet a certain criteria. I continue to be astonished at the
non-user-friendliness of Access compared to Lotus Approach, the 10 year
old
datebase program I was using. Thanks.

In Form view, it's available through the Records menu.

You may be able to use it to filter your form as you wish, and then apply
the Filter of the form as the WhereCondition for OpenReport.
"Nhmiller" <nh******@aol.comnojunk> wrote in message
news:20***************************@mb-m28.aol.com...
This is directly from Access' Help:

"About designing a query
When you open a query in Design view, or open a form, report, or
datasheet
and
show the Advanced Filter/Sort window (Advanced Filter/Sort window: A
window in
which you can create a filter from scratch. You enter criteria
expressions
in
the filter design grid to restrict the records in the open form or
datasheet to
a subset of records that meet the criteria.), you see the design grid,
which
you can use to make a variety of changes to get the query results you
want."

Once I have clicked on the Report Tab, and I have a report I have
already
created, how do I show the Advanced Filter/Sort window, so I can include
only
the records in the report that meet a certain criteria?

Thanks


Neil
Cat Paintings At Carol Wilson Gallery
http://www.carolwilsongallery.com

Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Michel | last post by:
Is there a way I can anti-aliasing a gif to be able to get a hi-quality resizeable backgroundpicture. When a GIF of JPG is being resized by the browser you get wurse pictures because it needs a...
1
by: Scott Dunham | last post by:
I'm trying to select records between 2 different times, but I can't seem to get Access to see anything other than the date. For instance, criteria "Between #11/12/2001 1:45:00 PM# and #11/12/2001...
1
by: MX1 | last post by:
Hi all, I have a form with a dropdown field on it that is a concatenation of LastName, FirstName and Middle Initial. For example, John A Brown shows up as "Brown, John A." I'm tring to filter...
8
by: dick | last post by:
I am just trying to print/report the results of a "filter by selection" which is done by right-clicking a form, filling in values, and "applying the filter." I have searched the newsgroups, and...
2
by: Mike Sweetman | last post by:
I have a form Form1 which when the Advanced Filter/Sort is used creates a form(maybe) with a title 'Form1Filter1 : Filter'. When I apply the filter to Form1 it is applied, but the value of...
1
by: werk | last post by:
For limiting access to the database to strictly necessary I try to filter the query by using DataView. Thw DataSet ds contains three columns (fields) : (LAND_ID, Landcode, Landnaam) and four...
6
by: Chris Zoper | last post by:
Hello, I have a form that shows a lot of records based on a passthrough query to a SQL Server database. I noticed that the Filter and the Sort property of the form do not properly work, often...
0
by: Andrew Meador - ASCPA, MCSE, MCP+I, Network+, A+ | last post by:
I am running Access 2007. I have a report that I want to filter. I can go into Advanced...Advanced Filter/Sort... and setup a filter that works fine on the report when I apply it. When in this...
0
by: Andrew Meador - ASCPA, MCSE, MCP+I, Network+, A+ | last post by:
I am running Access 2007. I have a report that I want to filter. I can go into Advanced...Advanced Filter/Sort... and setup a filter that works fine on the report when I apply it. When in this...
0
by: DolphinDB | last post by:
The formulas of 101 quantitative trading alphas used by WorldQuant were presented in the paper 101 Formulaic Alphas. However, some formulas are complex, leading to challenges in calculation. Take...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: Aftab Ahmad | last post by:
Hello Experts! I have written a code in MS Access for a cmd called "WhatsApp Message" to open WhatsApp using that very code but the problem is that it gives a popup message everytime I clicked on...
0
by: Aftab Ahmad | last post by:
So, I have written a code for a cmd called "Send WhatsApp Message" to open and send WhatsApp messaage. The code is given below. Dim IE As Object Set IE =...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: marcoviolo | last post by:
Dear all, I would like to implement on my worksheet an vlookup dynamic , that consider a change of pivot excel via win32com, from an external excel (without open it) and save the new file into a...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.