PC Review


Reply
Thread Tools Rate Thread

CSE formulas

 
 
=?Utf-8?B?QWJhcyBJYnJhaGltb3Y=?=
Guest
Posts: n/a
 
      25th Sep 2006
Dear friends, I`m currently using CSE formulas to extract and analyse data
with the multiple criterias. e.g:
=SUM(('12SP'!$A$2:$A$65536=$A$1)*('12SP'!$G$2:$G$65536=$C$6)*('12SP'!$E$2:$E$65536<=$D$2)*('12SP'!$D$2:$D$65536))..But
unfortunately I have a problem with sheets so that everytime I face the
calculating cells %0..%100 phrase when I make any change. Perhaps it`s
because of heavy formulas..Anybody can help me in this issue?Thanks
beforehand.
 
Reply With Quote
 
 
 
 
=?Utf-8?B?TWF4?=
Guest
Posts: n/a
 
      25th Sep 2006
One way .. I'd set the book's calc mode to Manual* (Click Tools > Options >
Calculation tab, options are there). Then we could press F9 to recalc, but
only as and when required, eg after all updates / changes are done.
*I'd usually leave "Recalc before save" unchecked (as a personal preference)

Another thing I might do is to use the smallest range sizes possible ..
> =SUM(('12SP'!$A$2:$A$65536=$A$1)*...

Do you really have/expect data all the way to 65K? Perhaps 1K suffices <g>?
The smaller the range sizes, the faster it'll compute.
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Abas Ibrahimov" wrote:
> Dear friends, I`m currently using CSE formulas to extract and analyse data
> with the multiple criterias. e.g:
> =SUM(('12SP'!$A$2:$A$65536=$A$1)*('12SP'!$G$2:$G$65536=$C$6)*('12SP'!$E$2:$E$65536<=$D$2)*('12SP'!$D$2:$D$65536))..But
> unfortunately I have a problem with sheets so that everytime I face the
> calculating cells %0..%100 phrase when I make any change. Perhaps it`s
> because of heavy formulas..Anybody can help me in this issue?Thanks
> beforehand.

 
Reply With Quote
 
=?Utf-8?B?QWJhcyBJYnJhaGltb3Y=?=
Guest
Posts: n/a
 
      25th Sep 2006
Wow..thanks for help Max, I will try to calculate them manually..and reduce
the range size as much as possible. Thanks again, very helpful

"Max" wrote:

> One way .. I'd set the book's calc mode to Manual* (Click Tools > Options >
> Calculation tab, options are there). Then we could press F9 to recalc, but
> only as and when required, eg after all updates / changes are done.
> *I'd usually leave "Recalc before save" unchecked (as a personal preference)
>
> Another thing I might do is to use the smallest range sizes possible ..
> > =SUM(('12SP'!$A$2:$A$65536=$A$1)*...

> Do you really have/expect data all the way to 65K? Perhaps 1K suffices <g>?
> The smaller the range sizes, the faster it'll compute.
> --
> Max
> Singapore
> http://savefile.com/projects/236895
> xdemechanik
> ---
> "Abas Ibrahimov" wrote:
> > Dear friends, I`m currently using CSE formulas to extract and analyse data
> > with the multiple criterias. e.g:
> > =SUM(('12SP'!$A$2:$A$65536=$A$1)*('12SP'!$G$2:$G$65536=$C$6)*('12SP'!$E$2:$E$65536<=$D$2)*('12SP'!$D$2:$D$65536))..But
> > unfortunately I have a problem with sheets so that everytime I face the
> > calculating cells %0..%100 phrase when I make any change. Perhaps it`s
> > because of heavy formulas..Anybody can help me in this issue?Thanks
> > beforehand.

 
Reply With Quote
 
=?Utf-8?B?TWF4?=
Guest
Posts: n/a
 
      25th Sep 2006
You're welcome, Abas !
Thanks for the feedback ..
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Abas Ibrahimov" wrote:
> Wow..thanks for help Max, I will try to calculate them manually..and reduce
> the range size as much as possible. Thanks again, very helpful

 
Reply With Quote
 
Bob Phillips
Guest
Posts: n/a
 
      25th Sep 2006
It can even be quicker to use dynamic ranges so as to only calculate the
minimum necessary, such as

=SUM((OFFSET('12SP'!$A$2,0,0,COUNTA('12SP'!$A:$A)-1,1)=$A$1)*
(OFFSET('12SP'!$G$2,0,0,COUNTA('12SP'!$A:$A)-1,1)=$C$6)*
(OFFSET('12SP'!$E$2,1,0,COUNTA('12SP'!$A:$A)-1,1)<=$D$2)*
(OFFSET('12SP'!$D$2,1,0,COUNTA('12SP'!$A:$A)-1,1)))


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"Abas Ibrahimov" <(E-Mail Removed)> wrote in message
news:272CF8F3-63D8-49D9-AA9A-(E-Mail Removed)...
> Wow..thanks for help Max, I will try to calculate them manually..and

reduce
> the range size as much as possible. Thanks again, very helpful
>
> "Max" wrote:
>
> > One way .. I'd set the book's calc mode to Manual* (Click Tools >

Options >
> > Calculation tab, options are there). Then we could press F9 to recalc,

but
> > only as and when required, eg after all updates / changes are done.
> > *I'd usually leave "Recalc before save" unchecked (as a personal

preference)
> >
> > Another thing I might do is to use the smallest range sizes possible ..
> > > =SUM(('12SP'!$A$2:$A$65536=$A$1)*...

> > Do you really have/expect data all the way to 65K? Perhaps 1K suffices

<g>?
> > The smaller the range sizes, the faster it'll compute.
> > --
> > Max
> > Singapore
> > http://savefile.com/projects/236895
> > xdemechanik
> > ---
> > "Abas Ibrahimov" wrote:
> > > Dear friends, I`m currently using CSE formulas to extract and analyse

data
> > > with the multiple criterias. e.g:
> > >

=SUM(('12SP'!$A$2:$A$65536=$A$1)*('12SP'!$G$2:$G$65536=$C$6)*('12SP'!$E$2:$E
$65536<=$D$2)*('12SP'!$D$2:$D$65536))..But
> > > unfortunately I have a problem with sheets so that everytime I face

the
> > > calculating cells %0..%100 phrase when I make any change. Perhaps it`s
> > > because of heavy formulas..Anybody can help me in this issue?Thanks
> > > beforehand.



 
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
Re: Convert Array Formulas to Regular Formulas minyeh Microsoft Excel Worksheet Functions 0 21st Mar 2010 05:55 AM
Counting # of Formulas in a column with formulas and entered data Brand Microsoft Excel Worksheet Functions 1 10th Oct 2009 01:01 PM
Query formulas (dates in formulas to be changed only once) Craig Microsoft Access Queries 1 5th Dec 2007 02:01 PM
CELLS NOT CALC FORMULAS - VALUES STAY SME FORMULAS CORRECT?? HELP =?Utf-8?B?U2hlcmJlcmc=?= Microsoft Excel Worksheet Functions 4 11th Sep 2007 01:34 AM
AdvancedFilter on cells with formulas, returning values and not formulas Claus Microsoft Excel Programming 2 7th Sep 2005 02:40 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 06:00 AM.