Excel 2007 VBA - macro stops after autofilter command

K

KBarrett

I have a spreadsheet that was created in an earlier version of Excel
and is now being used in Excel 2007 with compatibility mode on. One
of the macros filters the data on the sheet, using the autofilter
command, based on selections the user has made via a pop-up form.
Previous to Excel 2007, this was working fine. Now it appears the any
command lines following the autofilter command are ignored. Has
anyone encountered a similar situation?
 
O

OssieMac

Can you post the code where it gets the userform data and the Autofilter is
invoked plus a few lines that you say are not getting processed.

Also is the userform closed before the Autofilter is invoked?

Have you tried putting a msgbox between some of the lines that you believe
are not being processed to establish whether in fact they are not being
processed?
 
M

Martin Brown

KBarrett said:
I have a spreadsheet that was created in an earlier version of Excel
and is now being used in Excel 2007 with compatibility mode on. One
of the macros filters the data on the sheet, using the autofilter
command, based on selections the user has made via a pop-up form.
Previous to Excel 2007, this was working fine. Now it appears the any
command lines following the autofilter command are ignored. Has
anyone encountered a similar situation?

Not that particular one, but it is worth looking in the MSKB to see if
they actually admit to a problem with migrating XL2003 autofilter.

Does it stop with an error or appear to skip lines of code?

I have basically lost count of the number of horrors I have seen moving
complex spreadsheets with VBA from XL2003 to XL2007. I cannot for the
life of me see why anyone would install XL2007 until it is actually
stable. Productivity takes an instant dive and never seems to recover.
Still the customer is always right - even when they say there are two
M's in custommer (sic).

It is great fun watching experienced XL2003 users struggle to find where
in the new ribbon interface crucial options have been hidden.

Regards,
Martin Brown
 
K

KBarrett

I have a spreadsheet that was created in an earlier version of Excel
and is now being used in Excel 2007 with compatibility mode on.  One
of the macros filters the data on the sheet, using the autofilter
command, based on selections the user has made via a pop-up form.
Previous to Excel 2007, this was working fine.  Now it appears the any
command lines following the autofilter command are ignored.  Has
anyone encountered a similar situation?

I think I may have stumbled upon the cause of the problem. The
worksheet has a LOT of conditional formatting that has gotten messy
over the years but had never caused a problem in previous versions of
Excel (one of the things on my 'to-do' list was to clean it all up in
the 2007 version). When I removed all of the conditional formatting
from the sheet, my code ran fine and continued on past the autofilter
commands. I'm guessing the code was hanging on trying to evalute the
conditional formatting after the autofilter? I had put a timer in
the code before and after the one autofilter line, but lost patience
after waiting 15 minutes (there are only 4500 lines of data on the
sheet). As I sais, this wasn't a problem in Excel 2003. Now I have
to go back and add a cleaned-up version of the conditional formatting
and hope it doesn't hang on the autofilters again. Ahhhh,
Progress!! :)

Thanks for the responses that helped get me thinking "outside the box"
on ths one!

Karen
 
K

KBarrett

KBarrett said:
I have a spreadsheet that was created in an earlier version of Excel
and is now being used in Excel 2007 with compatibility mode on.  One
of the macros filters the data on the sheet, using the autofilter
command, based on selections the user has made via a pop-up form.
Previous to Excel 2007, this was working fine.  Now it appears the any
command lines following the autofilter command are ignored.  Has
anyone encountered a similar situation?

I think I may have stumbled upon the cause of the problem. The
worksheet has a LOT of conditional formatting that has gotten messy
over the years but had never caused a problem in previous versions of
Excel (one of the things on my 'to-do' list was to clean it all up in
the 2007 version). When I removed all of the conditional formatting
from the sheet, my code ran fine and continued on past the autofilter
commands. I'm guessing the code was hanging on trying to evalute the
conditional formatting after the autofilter? I had put a timer in
the code before and after the one autofilter line, but lost patience
after waiting 15 minutes (there are only 4500 lines of data on the
sheet). As I sais, this wasn't a problem in Excel 2003. Now I have
to go back and add a cleaned-up version of the conditional formatting
and hope it doesn't hang on the autofilters again. Ahhhh,
Progress!! :)

Thanks for the responses that helped get me thinking "outside the
box"
on ths one!


Karen
 
N

nod

I think I may have stumbled upon the cause of the problem.  The
worksheet has a LOT of conditional formatting that has gotten messy
over the years but had never caused a problem in previous versions of
Excel (one of the things on my 'to-do' list was to clean it all up in
the 2007 version).  When I removed all of the conditional formatting
from the sheet, my code ran fine and continued on past the autofilter
commands.  I'm guessing the code was hanging on trying to evalute the
conditional formatting after the autofilter?   I had put a timer in
the code before and after the one autofilter line, but lost patience
after waiting 15 minutes (there are only 4500 lines of data on the
sheet).  As I sais, this wasn't a problem in Excel 2003.  Now I have
to go back and add a cleaned-up version of the conditional formatting
and hope it doesn't hang on the autofilters again.  Ahhhh,
Progress!!  :)

Thanks for the responses that helped get me thinking "outside the
box"
on ths one!

Karen

You are not the only one with this problem, as I have the same.

nod
 
Joined
Sep 15, 2010
Messages
1
Reaction score
0
Macro gets corrupted

Hi,


Somehow my macros gets deleted. and by anyhow i am able to find the copies from hard disk. But now when i open the macro... it shows in some diffrent language as well as as if i try to run it wont show any macro.

Please help me to get back macro in the same format as i am helpless without macros.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top