Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default How to use small function?

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default How to use small function?

Eric,

1 way. Select columns A & N (Select A hold down Ctrl and selectN) and name
them using insert|name

Then use the formula

=SMALL(myRange,1)

Mike

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,202
Default How to use small function?

I would like to determine the small number fro column A & N only, does
anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)


Would this work for you?

=MIN(SMALL(A:A,1),SMALL(N:N,1))

Rick

  #4   Report Post  
Posted to microsoft.public.excel.misc
tom tom is offline
external usenet poster
 
Posts: 570
Default How to use small function?

Try using =SMALL(A1:N75,1)
Substitute the appropriate number for the last row in column N.

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,202
Default How to use small function?

My formula will work only for the smallest value in the two columns... if
you want the 2nd, 3rd, etc., it won't (necessarily) return the correct value
for those.

Rick


"Rick Rothstein (MVP - VB)" wrote in
message ...
I would like to determine the small number fro column A & N only, does
anyone
know how to do that? I need to use small function, because I can
determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)


Would this work for you?

=MIN(SMALL(A:A,1),SMALL(N:N,1))

Rick




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,202
Default How to use small function?

I would like to determine the small number fro column A & N only, does
anyone
know how to do that? I need to use small function, because I can
determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)


Would this work for you?

=MIN(SMALL(A:A,1),SMALL(N:N,1))


Duh! Well, of course, for the smallest value, this would have been better...

=MIN(A:A,N:N)

but it won't do for the 2nd, 3rd, etc.

Rick

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default How to use small function?

with result in row 1

=SMALL(A:N,ROW())

copy down for 2nd, 3rd etc smallest

"Tom" wrote:

Try using =SMALL(A1:N75,1)
Substitute the appropriate number for the last row in column N.

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default How to use small function?

I would like to determine the small number fro column A & N only

Would this formula include Cols B - M also?

"Toppers" wrote:

with result in row 1

=SMALL(A:N,ROW())

copy down for 2nd, 3rd etc smallest

"Tom" wrote:

Try using =SMALL(A1:N75,1)
Substitute the appropriate number for the last row in column N.

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric

  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default How to use small function?

It would

"Mike H" wrote:

I would like to determine the small number fro column A & N only


Would this formula include Cols B - M also?

"Toppers" wrote:

with result in row 1

=SMALL(A:N,ROW())

copy down for 2nd, 3rd etc smallest

"Tom" wrote:

Try using =SMALL(A1:N75,1)
Substitute the appropriate number for the last row in column N.

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric

  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default How to use small function?

.... sorry posted too early:

If it was only columns A and N, (as opposed to A to N) then your solution is
the correct one. And I think your solution is what the OP wanted!

Mea culpa!


"Mike H" wrote:

Eric,

1 way. Select columns A & N (Select A hold down Ctrl and selectN) and name
them using insert|name

Then use the formula

=SMALL(myRange,1)

Mike

"Eric" wrote:

I would like to determine the small number fro column A & N only, does anyone
know how to do that? I need to use small function, because I can determine
the second small number and the third small number from lists.
I try following code, but it fails
=SMALL(A:A,N:N,1)

Does anyone have any suggestions?
Thank for any suggestions
Eric



  #11   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,670
Default Thank everyone for suggestions

Thank everyone for suggestions
Eric

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
Small Function Shankidi Excel Worksheet Functions 4 February 19th 07 11:36 PM
SMALL FUNCTION - How it works [email protected] Excel Discussion (Misc queries) 6 February 13th 07 09:23 AM
SMALL function [email protected] Excel Discussion (Misc queries) 2 January 26th 07 06:38 PM
Referencing data using the SMALL function HBuck Excel Worksheet Functions 11 October 20th 06 04:39 AM
SMALL function if 0 Louis Excel Worksheet Functions 5 September 29th 06 06:46 PM


All times are GMT +1. The time now is 07:01 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"