this is weird

  • Thread starter Thread starter sa02000
  • Start date Start date
S

sa02000

I am using simple rank formula to rank one list. So I copy this formula
=RANK(F2,$F$2:$F$123) in first cell and then double click on fill
handle to fill this formula in my whole list. But I get exact same rank
in all cells. If I click inside each cell (in the formula bar) and then
hit enter then formula seem to give the right rank instead of same
rank....but I will have to do that in all the cells to get correct
ranking....anybody has any idea why this is happening??

Thanks, Jay
 
It sounds like calculation is set to manual. Go to the Tools
menu, choose Options, then the Calculation tab. There, ensure
that Calculation is set to Automatic.


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com


"sa02000" <[email protected]>
wrote in message
news:[email protected]...
 
As a guess your calculation mode is set to manual. Change it to automatic.
Tools -> Options -> Calaculation Tab
 
Hi
You may need to set calculation to automatic - it appears that it is
currently on manual which won't refresh the formula results.

Andrew B
 
Thank you all for replying. I was running a macro and turning the
calculation off to make the macro go faster.

Jay
 
Make gosh darn sure that you use an errorhandler with any macro that toggles
the application settings...

sub Test
on error goto errorhandler
application.calculation = xlManual
'Your Code Here
Errorhandler:
application.calculation = xlAutomatic
end sub

That of course won't help you if you halt your code while debugging... Then
you just have to remember to turn it back on.
 

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

Similar Threads

Count if 3
min if horizontal 0
Error 1004 3
Run Time Error '1004' 1
rank scores show ties and add top four scores 3
macro for top10 & worst10 ranking 3
macro for top10 and wors10 in ranking 1
Rank Formula 1

Back
Top