PC Review


Reply
Thread Tools Rate Thread

Determine the best km/h

 
 
Michael Koerner
Guest
Posts: n/a
 
      30th Mar 2009
How would one pick out the best km/h from a column of numbers. example below

5.58
5.95
5.22

Where 5.95 is the best from the above list.

--

Regards
Michael Koerner


 
Reply With Quote
 
 
 
 
Rick Rothstein
Guest
Posts: n/a
 
      30th Mar 2009
Is "best" the same as "largest number"? If so, use the MAX function. Here is an example... if your values are in Column A, then...

=MAX(A2:A100)

will find the largest number in Column A between (and including) rows 2 and 100.

--
Rick (MVP - Excel)


"Michael Koerner" <(E-Mail Removed)> wrote in message news:eK%(E-Mail Removed)...
How would one pick out the best km/h from a column of numbers. example below

5.58
5.95
5.22

Where 5.95 is the best from the above list.

--

Regards
Michael Koerner


 
Reply With Quote
 
Tom Hutchins
Guest
Posts: n/a
 
      30th Mar 2009
If by "best" you mean highest, you could use a cell formula like one of these:
=MAX(A1:A3)
=MAX(A:A)

Using VBA, you could use something like:
Dim InRng As Range
Set InRng = Columns("A:A")
MsgBox Application.WorksheetFunction.Max(InRng)

or just:
MsgBox Application.WorksheetFunction.Max(ActiveSheet.Columns("A:A"))

Hope this helps,

Hutch

"Michael Koerner" wrote:

> How would one pick out the best km/h from a column of numbers. example below
>
> 5.58
> 5.95
> 5.22
>
> Where 5.95 is the best from the above list.
>
> --
>
> Regards
> Michael Koerner
>
>

 
Reply With Quote
 
Michael Koerner
Guest
Posts: n/a
 
      31st Mar 2009
It does, and thank you very much.

--

Regards
Michael Koerner


"Tom Hutchins" <(E-Mail Removed)> wrote in message news45EEEAC-FB0B-4090-BAF2-(E-Mail Removed)...
If by "best" you mean highest, you could use a cell formula like one of these:
=MAX(A1:A3)
=MAX(A:A)

Using VBA, you could use something like:
Dim InRng As Range
Set InRng = Columns("A:A")
MsgBox Application.WorksheetFunction.Max(InRng)

or just:
MsgBox Application.WorksheetFunction.Max(ActiveSheet.Columns("A:A"))

Hope this helps,

Hutch

"Michael Koerner" wrote:

> How would one pick out the best km/h from a column of numbers. example below
>
> 5.58
> 5.95
> 5.22
>
> Where 5.95 is the best from the above list.
>
> --
>
> Regards
> Michael Koerner
>
>

 
Reply With Quote
 
Michael Koerner
Guest
Posts: n/a
 
      31st Mar 2009
They are, and thank you very much.

--

Regards
Michael Koerner


"Rick Rothstein" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...
Is "best" the same as "largest number"? If so, use the MAX function. Here is an example... if your values are in Column A, then...

=MAX(A2:A100)

will find the largest number in Column A between (and including) rows 2 and 100.

--
Rick (MVP - Excel)


"Michael Koerner" <(E-Mail Removed)> wrote in message news:eK%(E-Mail Removed)...
How would one pick out the best km/h from a column of numbers. example below

5.58
5.95
5.22

Where 5.95 is the best from the above list.

--

Regards
Michael Koerner


 
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
How to determine the value? Eric Microsoft Excel Misc 0 6th Jun 2010 06:17 AM
Determine best way to sum WLMPilot Microsoft Excel Misc 4 22nd Dec 2008 02:03 AM
How to determine the value? =?Utf-8?B?RXJpYw==?= Microsoft Excel Worksheet Functions 1 13th Feb 2007 04:17 AM
how to determine SID jg Windows XP Security 2 5th Mar 2006 01:21 AM
[Help]How do we determine? Wang.Hua Windows XP General 0 2nd Nov 2004 03:34 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:44 PM.