PC Review


Reply
Thread Tools Rate Thread

Auto Filter - Custom Auto Filter

 
 
Johnnyboy5
Guest
Posts: n/a
 
      1st Aug 2009
The issue I've encountered is that the macro recorder can't be stopped
with the Custom Autofilter Dialog Box open. Is it possible to create a
macro to goto select Custom from the drop down list, and the dialog
box that then appears ?

I must finish the sheet this weekend and cant trust the end users to
use the list without a marco !

many thanks
 
Reply With Quote
 
 
 
 
p45cal
Guest
Posts: n/a
 
      1st Aug 2009
in xl 2003:
Application.Dialogs(xlDialogFilterAdvanced).Show

or with parameters (search help for "Built-In Dialog Box Argument Lists" and
the parameters for this one are:
operation, list_ref, criteria_ref, copy_ref, unique)
You can get a clue for what form these can take from looking at the vba help
for the AdvancedFilter Method

Application.Dialogs(xlDialogFilterAdvanced).Show xlFilterCopy,
Range("D6:N16"), , Range( "D22"), True


--
p45cal


"Johnnyboy5" wrote:

> The issue I've encountered is that the macro recorder can't be stopped
> with the Custom Autofilter Dialog Box open. Is it possible to create a
> macro to goto select Custom from the drop down list, and the dialog
> box that then appears ?
>
> I must finish the sheet this weekend and cant trust the end users to
> use the list without a marco !
>
> many thanks
>

 
Reply With Quote
 
Johnnyboy5
Guest
Posts: n/a
 
      1st Aug 2009
On 1 Aug, 14:19, p45cal <p45...@discussions.microsoft.com> wrote:
> in xl 2003:
> Application.Dialogs(xlDialogFilterAdvanced).Show
>
> or with parameters (search help for "Built-In Dialog Box Argument Lists" and
> the parameters for this one are:
> operation, list_ref, criteria_ref, copy_ref, unique)
> You can get a clue for what form these can take from looking at the vba help
> for the AdvancedFilter Method
>
> Application.Dialogs(xlDialogFilterAdvanced).Show xlFilterCopy,
> Range("D6:N16"), , Range( "D22"), True
>
> --
> p45cal
>
> "Johnnyboy5" wrote:
> > The issue I've encountered is that the macro recorder can't be stopped
> > with the Custom Autofilter Dialog Box open. Is it possible to create a
> > macro to goto select Custom from the drop down list, and *the dialog
> > box that then appears ?

>
> > I must finish the sheet this weekend and cant trust the end users to
> > use the list without a marco !

>
> > many thanks


Thanks, nearly there, but the macro opens "advanced" and I just
need it to open the (Customer...) option Custom Auto filter.

Can you still help me here...

thanks very much for replying in the first place

Johnnyboy
 
Reply With Quote
 
p45cal
Guest
Posts: n/a
 
      1st Aug 2009
Aha.. well there doesn't seem to be one, hmmph
Perhaps there's anotherway to do the equivalent.. what are you trying to do;
what might the user be entering into the custom autofilter dialogue?
--
p45cal


"Johnnyboy5" wrote:

> On 1 Aug, 14:19, p45cal <p45...@discussions.microsoft.com> wrote:
> > in xl 2003:
> > Application.Dialogs(xlDialogFilterAdvanced).Show
> >
> > or with parameters (search help for "Built-In Dialog Box Argument Lists" and
> > the parameters for this one are:
> > operation, list_ref, criteria_ref, copy_ref, unique)
> > You can get a clue for what form these can take from looking at the vba help
> > for the AdvancedFilter Method
> >
> > Application.Dialogs(xlDialogFilterAdvanced).Show xlFilterCopy,
> > Range("D6:N16"), , Range( "D22"), True
> >
> > --
> > p45cal
> >
> > "Johnnyboy5" wrote:
> > > The issue I've encountered is that the macro recorder can't be stopped
> > > with the Custom Autofilter Dialog Box open. Is it possible to create a
> > > macro to goto select Custom from the drop down list, and the dialog
> > > box that then appears ?

> >
> > > I must finish the sheet this weekend and cant trust the end users to
> > > use the list without a marco !

> >
> > > many thanks

>
> Thanks, nearly there, but the macro opens "advanced" and I just
> need it to open the (Customer...) option Custom Auto filter.
>
> Can you still help me here...
>
> thanks very much for replying in the first place
>
> Johnnyboy
>

 
Reply With Quote
 
Johnnyboy5
Guest
Posts: n/a
 
      2nd Aug 2009
On 1 Aug, 22:38, p45cal <p45...@discussions.microsoft.com> wrote:
> Aha.. *well there doesn't seem to be one, *hmmph
> Perhaps there's anotherway to do the equivalent.. what are you trying to do;
> what might the user be entering into the custom autofilter dialogue?
> --
> p45cal
>
> "Johnnyboy5" wrote:
> > On 1 Aug, 14:19, p45cal <p45...@discussions.microsoft.com> wrote:
> > > in xl 2003:
> > > Application.Dialogs(xlDialogFilterAdvanced).Show

>
> > > or with parameters (search help for "Built-In Dialog Box Argument Lists" and
> > > the parameters for this one are:
> > > operation, list_ref, criteria_ref, copy_ref, unique)
> > > You can get a clue for what form these can take from looking at the vba help
> > > for the AdvancedFilter Method

>
> > > Application.Dialogs(xlDialogFilterAdvanced).Show xlFilterCopy,
> > > Range("D6:N16"), , Range( "D22"), True

>
> > > --
> > > p45cal

>
> > > "Johnnyboy5" wrote:
> > > > The issue I've encountered is that the macro recorder can't be stopped
> > > > with the Custom Autofilter Dialog Box open. Is it possible to create a
> > > > macro to goto select Custom from the drop down list, and *the dialog
> > > > box that then appears ?

>
> > > > I must finish the sheet this weekend and cant trust the end users to
> > > > use the list without a marco !

>
> > > > many thanks

>
> > Thanks, * nearly there, *but the macro opens "advanced" and I just
> > need it to open the (Customer...) option Custom Auto filter.

>
> > Can you still help me here...

>
> > thanks very much for replying in the first place

>
> > Johnnyboy


Hi

they would be looking for a record number in column A and then just
be able to edit that row without seeing all the other rows (they could
miss a line) also I have put a button on it called ALL so they can
restore the full list at the end of editing the row they needed up
date.

Its for a reablement team and its reocrds of referrals, work done etc.

many thanks for your consideration.

Johnnyboy

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Auto filter custom filter stevefromnaki Microsoft Excel Worksheet Functions 2 30th Dec 2009 06:23 AM
Custom Auto Filter Dave Microsoft Excel Misc 1 1st Oct 2009 02:19 PM
custom auto filter Ranjit kurian Microsoft Excel Programming 1 26th Aug 2008 09:03 AM
Custom Auto Filter =?Utf-8?B?VmFkaGltb28=?= Microsoft Excel Programming 2 24th Nov 2006 10:45 AM
Custom Auto Filter Martin Microsoft Excel New Users 5 6th Jul 2004 12:12 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:31 PM.