Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all....
I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Chuck
Sub test() MsgBox ActiveSheet.AutoFilterMode End Sub HTH. Best wishes Harald "CLR" skrev i melding ... Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you very much Kind Sir.
Vaya con dios, Chuck, CABGx3 "Harald Staff" wrote: Hi Chuck Sub test() MsgBox ActiveSheet.AutoFilterMode End Sub HTH. Best wishes Harald "CLR" skrev i melding ... Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
CLR, add the following line to your code:
If ActiveSheet.AutoFilterMode Then ActiveSheet.AutoFilterMode = False HTH "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks very much!
Vaya con Dios, Chuck, CABGx3 "quartz" wrote: CLR, add the following line to your code: If ActiveSheet.AutoFilterMode Then ActiveSheet.AutoFilterMode = False HTH "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thank you very much.......of the ones suggested so far, I think this is the
method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The only thing about Toppers version is, if auto filter is already off, it
generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#9
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You sure?
It didn't cause an error for me. Any chance your workbook didn't have a sheet named "sheet1"? That would cause an error. quartz wrote: The only thing about Toppers version is, if auto filter is already off, it generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 -- Dave Peterson |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
WOW, thanks for the warning.....I was just about to test it when this post
came in......so, since I don't know how to "trap that error", I reckon I'll fall back to using the method you suggested........I would have selected it first except that I thought the other one would be easier for my little mind to remember for next time..... Thanks again, Chuck, CABGx3 "quartz" wrote: The only thing about Toppers version is, if auto filter is already off, it generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#11
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try it anyway.
CLR wrote: WOW, thanks for the warning.....I was just about to test it when this post came in......so, since I don't know how to "trap that error", I reckon I'll fall back to using the method you suggested........I would have selected it first except that I thought the other one would be easier for my little mind to remember for next time..... Thanks again, Chuck, CABGx3 "quartz" wrote: The only thing about Toppers version is, if auto filter is already off, it generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 -- Dave Peterson |
#12
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dave is right, my appologies to Toppers, CLR and the confusion my post
caused. Either code version will work. "CLR" wrote: WOW, thanks for the warning.....I was just about to test it when this post came in......so, since I don't know how to "trap that error", I reckon I'll fall back to using the method you suggested........I would have selected it first except that I thought the other one would be easier for my little mind to remember for next time..... Thanks again, Chuck, CABGx3 "quartz" wrote: The only thing about Toppers version is, if auto filter is already off, it generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
#13
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It doesn't cause an error. I think quartz has it confused with ShowAllData
-- Regards, Tom Ogilvy "CLR" wrote in message ... WOW, thanks for the warning.....I was just about to test it when this post came in......so, since I don't know how to "trap that error", I reckon I'll fall back to using the method you suggested........I would have selected it first except that I thought the other one would be easier for my little mind to remember for next time..... Thanks again, Chuck, CABGx3 "quartz" wrote: The only thing about Toppers version is, if auto filter is already off, it generates an error. Unless of course you trap that error...? "CLR" wrote: Thank you very much.......of the ones suggested so far, I think this is the method I prefer.... Thanks again, Vaya con Dios, Chuck, CABGx3 "Toppers" wrote: Hi, Worksheets("Sheet1").AutoFilterMode = False "CLR" wrote: Hi all.... I know I can toggle the Autofilter on and off with the line "Selection.Autofilter", but when I send a user to a Sheet from my Main Menu, I do not know if Autofilter is on there, or not.......I would like to turn it off if it has been left on........help please..... Vaya con Dios, Chuck, CABGx3 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2007 excel autofilter change back to 2003 autofilter? | Excel Discussion (Misc queries) | |||
Macro turn off AutoFilter | Excel Worksheet Functions | |||
Excel 2003 - turn off option in autofilter | Excel Discussion (Misc queries) | |||
Code to automatically turn on and turn off Track Changes | Excel Programming | |||
Turn AutoFilter off by code? | Excel Programming |