#1   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Rant!

I've always had problems with Excel 2002 crashing when I use the formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't use
the evaluate formula command on those formulas but this latest one is a joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the same
as evaluate formula. Evaluate formula is a great tool when it doesn't cause
a crash!

Rant over.

Biff


  #2   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Rant!

I just tried this in xl2003.

xl2003 didn't crash, but tools|formula auditing|evaluate formula didn't work
either.

The evaluation box just cleared when it was evaluating a2:a$100.



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't use
the evaluate formula command on those formulas but this latest one is a joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the same
as evaluate formula. Evaluate formula is a great tool when it doesn't cause
a crash!

Rant over.

Biff


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Rant!

Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my other test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't use
the evaluate formula command on those formulas but this latest one is a joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the same
as evaluate formula. Evaluate formula is a great tool when it doesn't cause
a crash!

Rant over.

Biff


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Rant!

Hi Dave!

This is very frustrating. I would just like to know whether it is in fact a
problem with Excel or maybe my machine configuration isn't up to the task.
(enough ram?) I have 256mb. That isn't a lot by *TODAYS* standard but that
was pretty strong when I got the machine and I've had this problem since day
1.

I'm getting tired of sending error reports to M$. It'd be nice to get some
feedback from them.

Biff

"Dave Peterson" wrote in message
...
Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my other
test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple
formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't use
the evaluate formula command on those formulas but this latest one is a
joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the
same
as evaluate formula. Evaluate formula is a great tool when it doesn't
cause
a crash!

Rant over.

Biff


--

Dave Peterson



  #5   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier
 
Posts: n/a
Default Rant!

Hi Biff

No consolation I know, but it's not your machine.
I have 1 GB RAM and just tested with XL2002 and XL2003 and experienced
the same crash.
I did wonder though, why you were using an array formula as opposed to
=IF(A10,(COUNTIF(A2:A$10,"0")-1)*A1,"")
which produced the expected results for me in both versions.

--
Regards

Roger Govier


"Biff" wrote in message
...
Hi Dave!

This is very frustrating. I would just like to know whether it is in
fact a problem with Excel or maybe my machine configuration isn't up
to the task. (enough ram?) I have 256mb. That isn't a lot by *TODAYS*
standard but that was pretty strong when I got the machine and I've
had this problem since day 1.

I'm getting tired of sending error reports to M$. It'd be nice to get
some feedback from them.

Biff

"Dave Peterson" wrote in message
...
Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my
other test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the
formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple
formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and
don't use
the evaluate formula command on those formulas but this latest one
is a joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not
the same
as evaluate formula. Evaluate formula is a great tool when it
doesn't cause
a crash!

Rant over.

Biff


--

Dave Peterson







  #6   Report Post  
Posted to microsoft.public.excel.misc
Biff
 
Posts: n/a
Default Rant!

Hi Roger!

I did wonder though, why you were using an array formula as opposed to
=IF(A10,(COUNTIF(A2:A$10,"0")-1)*A1,"")


I'm looking for the first position of a value that is 0. Countif would
count how many meet that criteria in the entire range.

Biff

"Roger Govier" wrote in message
...
Hi Biff

No consolation I know, but it's not your machine.
I have 1 GB RAM and just tested with XL2002 and XL2003 and experienced the
same crash.
I did wonder though, why you were using an array formula as opposed to
=IF(A10,(COUNTIF(A2:A$10,"0")-1)*A1,"")
which produced the expected results for me in both versions.

--
Regards

Roger Govier


"Biff" wrote in message
...
Hi Dave!

This is very frustrating. I would just like to know whether it is in fact
a problem with Excel or maybe my machine configuration isn't up to the
task. (enough ram?) I have 256mb. That isn't a lot by *TODAYS* standard
but that was pretty strong when I got the machine and I've had this
problem since day 1.

I'm getting tired of sending error reports to M$. It'd be nice to get
some feedback from them.

Biff

"Dave Peterson" wrote in message
...
Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my
other test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the
formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple
formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't
use
the evaluate formula command on those formulas but this latest one is a
joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the
same
as evaluate formula. Evaluate formula is a great tool when it doesn't
cause
a crash!

Rant over.

Biff

--

Dave Peterson







  #7   Report Post  
Posted to microsoft.public.excel.misc
Roger Govier
 
Posts: n/a
Default Rant!

Hi Biff

Quite right, Countif provides totally the wrong answer.
However, on retrying your formula in XL2003, with data of 2,0,0,
,0,6,7,8,9,8 in cell a1:a10, I now get the correct result of 8 returned
to the formula posted in cell C1, whereas previously I was getting #
VALUE.
On trying to Evaluate the formula with Auditing, I still experience the
crash.
Very peculiar.

--
Regards

Roger Govier


"Biff" wrote in message
...
Hi Roger!

I did wonder though, why you were using an array formula as opposed
to
=IF(A10,(COUNTIF(A2:A$10,"0")-1)*A1,"")


I'm looking for the first position of a value that is 0. Countif
would count how many meet that criteria in the entire range.

Biff

"Roger Govier" wrote in message
...
Hi Biff

No consolation I know, but it's not your machine.
I have 1 GB RAM and just tested with XL2002 and XL2003 and
experienced the same crash.
I did wonder though, why you were using an array formula as opposed
to
=IF(A10,(COUNTIF(A2:A$10,"0")-1)*A1,"")
which produced the expected results for me in both versions.

--
Regards

Roger Govier


"Biff" wrote in message
...
Hi Dave!

This is very frustrating. I would just like to know whether it is in
fact a problem with Excel or maybe my machine configuration isn't up
to the task. (enough ram?) I have 256mb. That isn't a lot by
*TODAYS* standard but that was pretty strong when I got the machine
and I've had this problem since day 1.

I'm getting tired of sending error reports to M$. It'd be nice to
get some feedback from them.

Biff

"Dave Peterson" wrote in message
...
Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my
other test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the
formula
auditing tool, evaluate formula, on really "complex" array
formulas.

I'm sad to say Excel has hit a new low and even crashes on a
simple formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and
don't use
the evaluate formula command on those formulas but this latest one
is a joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not
the same
as evaluate formula. Evaluate formula is a great tool when it
doesn't cause
a crash!

Rant over.

Biff

--

Dave Peterson








  #8   Report Post  
Posted to microsoft.public.excel.misc
Dave Peterson
 
Posts: n/a
Default Rant!

I have 1GB of memory and xl still crashed. It sure doesn't look like a hardware
problem to me.



Biff wrote:

Hi Dave!

This is very frustrating. I would just like to know whether it is in fact a
problem with Excel or maybe my machine configuration isn't up to the task.
(enough ram?) I have 256mb. That isn't a lot by *TODAYS* standard but that
was pretty strong when I got the machine and I've had this problem since day
1.

I'm getting tired of sending error reports to M$. It'd be nice to get some
feedback from them.

Biff

"Dave Peterson" wrote in message
...
Oops. Never mind that last post. xl2003 crashed too.

(I didn't have anything in A1 and the formula evaluated to "" in my other
test
(doh!!).)



Biff wrote:

I've always had problems with Excel 2002 crashing when I use the formula
auditing tool, evaluate formula, on really "complex" array formulas.

I'm sad to say Excel has hit a new low and even crashes on a simple
formula
like this:

=IF(A10,(MATCH(TRUE,A2:A$100,0)-1)*A1,"")

It crashes evaluating the array:

A2:A$100

I pretty much have learned what formulas will cause a crash and don't use
the evaluate formula command on those formulas but this latest one is a
joke
(but I'm not $%^*($%% laughing).

Yes, I know I can highlight expressions and press F9 but it's not the
same
as evaluate formula. Evaluate formula is a great tool when it doesn't
cause
a crash!

Rant over.

Biff


--

Dave Peterson


--

Dave Peterson
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
RANT - am I the only one that gets the impression that the programmers truly Marc New Users to Excel 7 April 24th 05 05:00 PM


All times are GMT +1. The time now is 05:17 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"