Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-22-2008, 12:58 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Have a value be shown as the referneced cell

I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
of data. The answer was found in cell A36.

The formula was fine but I was wondering if there is a formula that will
display the answer's cell location.


The value of A36 is 10.
With my formula =Max($a$1:$B$55,1) the answer is 10.

But I would need another formula to display A36 (or the cell's location)
The find function isn't working
Reply With Quote
  #2 (permalink)  
Old 07-22-2008, 01:20 PM
=?Utf-8?B?TWF4?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

One play, in say, C1:
=IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"","B "&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATCH (MAX($A$1:$B$55,1),$A$1:$A$55,0))

The above sequentially matches the result from the MAX down col A first,
then down col B. If there are any ties in the MAX, then only the 1st matched
instance will be returned.
--
Max
Singapore
http://savefile.com/projects/236895
Downloads:16,200 Files:354 Subscribers:53
xdemechanik
---
"marc" wrote:
> I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> of data. The answer was found in cell A36.
>
> The formula was fine but I was wondering if there is a formula that will
> display the answer's cell location.
>
>
> The value of A36 is 10.
> With my formula =Max($a$1:$B$55,1) the answer is 10.
>
> But I would need another formula to display A36 (or the cell's location)
> The find function isn't working

Reply With Quote
  #3 (permalink)  
Old 07-22-2008, 01:32 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

ok i think is would work but this was more than I expected. How would it work
if this was my actual data range.

$C$33 : $R$33 and I am finding the MIN

"Max" wrote:

> One play, in say, C1:
> =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"","B "&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATCH (MAX($A$1:$B$55,1),$A$1:$A$55,0))
>
> The above sequentially matches the result from the MAX down col A first,
> then down col B. If there are any ties in the MAX, then only the 1st matched
> instance will be returned.
> --
> Max
> Singapore
> http://savefile.com/projects/236895
> Downloads:16,200 Files:354 Subscribers:53
> xdemechanik
> ---
> "marc" wrote:
> > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > of data. The answer was found in cell A36.
> >
> > The formula was fine but I was wondering if there is a formula that will
> > display the answer's cell location.
> >
> >
> > The value of A36 is 10.
> > With my formula =Max($a$1:$B$55,1) the answer is 10.
> >
> > But I would need another formula to display A36 (or the cell's location)
> > The find function isn't working

Reply With Quote
  #4 (permalink)  
Old 07-22-2008, 01:36 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

also where is the answer referenced in the formula.

"Max" wrote:

> One play, in say, C1:
> =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"","B "&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATCH (MAX($A$1:$B$55,1),$A$1:$A$55,0))
>
> The above sequentially matches the result from the MAX down col A first,
> then down col B. If there are any ties in the MAX, then only the 1st matched
> instance will be returned.
> --
> Max
> Singapore
> http://savefile.com/projects/236895
> Downloads:16,200 Files:354 Subscribers:53
> xdemechanik
> ---
> "marc" wrote:
> > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > of data. The answer was found in cell A36.
> >
> > The formula was fine but I was wondering if there is a formula that will
> > display the answer's cell location.
> >
> >
> > The value of A36 is 10.
> > With my formula =Max($a$1:$B$55,1) the answer is 10.
> >
> > But I would need another formula to display A36 (or the cell's location)
> > The find function isn't working

Reply With Quote
  #5 (permalink)  
Old 07-22-2008, 01:41 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

Sorry I am not using MIN OR MAX but rather SMALL

"marc" wrote:

> also where is the answer referenced in the formula.
>
> "Max" wrote:
>
> > One play, in say, C1:
> > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"","B "&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATCH (MAX($A$1:$B$55,1),$A$1:$A$55,0))
> >
> > The above sequentially matches the result from the MAX down col A first,
> > then down col B. If there are any ties in the MAX, then only the 1st matched
> > instance will be returned.
> > --
> > Max
> > Singapore
> > http://savefile.com/projects/236895
> > Downloads:16,200 Files:354 Subscribers:53
> > xdemechanik
> > ---
> > "marc" wrote:
> > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > of data. The answer was found in cell A36.
> > >
> > > The formula was fine but I was wondering if there is a formula that will
> > > display the answer's cell location.
> > >
> > >
> > > The value of A36 is 10.
> > > With my formula =Max($a$1:$B$55,1) the answer is 10.
> > >
> > > But I would need another formula to display A36 (or the cell's location)
> > > The find function isn't working

Reply With Quote
  #6 (permalink)  
Old 07-22-2008, 01:43 PM
Pete_UK
 
Posts: n/a
Re: Have a value be shown as the referneced cell

Try this:

=CHAR(MATCH(MIN(C33:R33),C33:R33,0)+66)&"33"

Hope this helps.

Pete

On Jul 22, 2:32*pm, marc <m...@discussions.microsoft.com> wrote:
> ok i think is would work but this was more than I expected. How would it work
> if this was my actual data range.
>
> $C$33 : $R$33 and I am finding the MIN
>
>
>
> "Max" wrote:
> > One play, in say, C1:
> > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$5*5,1),$B$1:$B$55,0)),""," B"&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATC H*(MAX($A$1:$B$55,1),$A$1:$A$55,0))

>
> > The above sequentially matches the result from the MAX down col A first,
> > then down col B. If there are any ties in the MAX, then only the 1st matched
> > instance will be returned.
> > --
> > Max
> > Singapore
> >http://savefile.com/projects/236895
> > Downloads:16,200 Files:354 Subscribers:53
> > xdemechanik
> > ---
> > "marc" wrote:
> > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > of data. The answer was found in cell A36.

>
> > > The formula was fine but I was wondering if there is a formula that will
> > > display the answer's cell location.

>
> > > The value of A36 is 10.
> > > With my formula =Max($a$1:$B$55,1) the answer is 10.

>
> > > But I would need another formula to display A36 (or the cell's location)
> > > The find function isn't working- Hide quoted text -

>
> - Show quoted text -


Reply With Quote
  #7 (permalink)  
Old 07-22-2008, 01:51 PM
Pete_UK
 
Posts: n/a
Re: Have a value be shown as the referneced cell

Use this instead of my MIN formula:

=CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33"

You can change the 1 in the SMALL function to 2, 3, 4 etc to get the
next smallest etc. If you want to show the cell contents as well as
the reference, you can do this:

=CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33 contains
"&SMALL(C33:R33,1)

which shows:

F33 contains 2

with my test data.

Hope this helps.

Pete


On Jul 22, 2:41*pm, marc <m...@discussions.microsoft.com> wrote:
> Sorry I am not using MIN OR MAX but rather SMALL
>
>
>
> "marc" wrote:
> > also where is the answer referenced in the formula.

>
> > "Max" wrote:

>
> > > One play, in say, C1:
> > > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$5*5,1),$B$1:$B$55,0)),""," B"&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MATC H*(MAX($A$1:$B$55,1),$A$1:$A$55,0))

>
> > > The above sequentially matches the result from the MAX down col A first,
> > > then down col B. If there are any ties in the MAX, then only the 1st matched
> > > instance will be returned.
> > > --
> > > Max
> > > Singapore
> > >http://savefile.com/projects/236895
> > > Downloads:16,200 Files:354 Subscribers:53
> > > xdemechanik
> > > ---
> > > "marc" wrote:
> > > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > > of data. The answer was found in cell A36.

>
> > > > The formula was fine but I was wondering if there is a formula thatwill
> > > > display the answer's cell location.

>
> > > > The value of A36 is 10.
> > > > With my formula =Max($a$1:$B$55,1) the answer is 10.

>
> > > > But I would need another formula to display A36 (or the cell's location)
> > > > The find function isn't working- Hide quoted text -

>
> - Show quoted text -


Reply With Quote
  #8 (permalink)  
Old 07-22-2008, 01:57 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

Thanks Pete that worked Perfect!!!

"Pete_UK" wrote:

> Try this:
>
> =CHAR(MATCH(MIN(C33:R33),C33:R33,0)+66)&"33"
>
> Hope this helps.
>
> Pete
>
> On Jul 22, 2:32 pm, marc <m...@discussions.microsoft.com> wrote:
> > ok i think is would work but this was more than I expected. How would it work
> > if this was my actual data range.
> >
> > $C$33 : $R$33 and I am finding the MIN
> >
> >
> >
> > "Max" wrote:
> > > One play, in say, C1:
> > > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$5Â*5,1),$B$1:$B$55,0)),"", "B"&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MAT CHÂ*(MAX($A$1:$B$55,1),$A$1:$A$55,0))

> >
> > > The above sequentially matches the result from the MAX down col A first,
> > > then down col B. If there are any ties in the MAX, then only the 1st matched
> > > instance will be returned.
> > > --
> > > Max
> > > Singapore
> > >http://savefile.com/projects/236895
> > > Downloads:16,200 Files:354 Subscribers:53
> > > xdemechanik
> > > ---
> > > "marc" wrote:
> > > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > > of data. The answer was found in cell A36.

> >
> > > > The formula was fine but I was wondering if there is a formula that will
> > > > display the answer's cell location.

> >
> > > > The value of A36 is 10.
> > > > With my formula =Max($a$1:$B$55,1) the answer is 10.

> >
> > > > But I would need another formula to display A36 (or the cell's location)
> > > > The find function isn't working- Hide quoted text -

> >
> > - Show quoted text -

>
>

Reply With Quote
  #9 (permalink)  
Old 07-22-2008, 02:04 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

Pete what is the +66 and "33" just curious

"Pete_UK" wrote:

> Use this instead of my MIN formula:
>
> =CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33"
>
> You can change the 1 in the SMALL function to 2, 3, 4 etc to get the
> next smallest etc. If you want to show the cell contents as well as
> the reference, you can do this:
>
> =CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33 contains
> "&SMALL(C33:R33,1)
>
> which shows:
>
> F33 contains 2
>
> with my test data.
>
> Hope this helps.
>
> Pete
>
>
> On Jul 22, 2:41 pm, marc <m...@discussions.microsoft.com> wrote:
> > Sorry I am not using MIN OR MAX but rather SMALL
> >
> >
> >
> > "marc" wrote:
> > > also where is the answer referenced in the formula.

> >
> > > "Max" wrote:

> >
> > > > One play, in say, C1:
> > > > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$5Â*5,1),$B$1:$B$55,0)),"", "B"&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MAT CHÂ*(MAX($A$1:$B$55,1),$A$1:$A$55,0))

> >
> > > > The above sequentially matches the result from the MAX down col A first,
> > > > then down col B. If there are any ties in the MAX, then only the 1st matched
> > > > instance will be returned.
> > > > --
> > > > Max
> > > > Singapore
> > > >http://savefile.com/projects/236895
> > > > Downloads:16,200 Files:354 Subscribers:53
> > > > xdemechanik
> > > > ---
> > > > "marc" wrote:
> > > > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > > > of data. The answer was found in cell A36.

> >
> > > > > The formula was fine but I was wondering if there is a formula that will
> > > > > display the answer's cell location.

> >
> > > > > The value of A36 is 10.
> > > > > With my formula =Max($a$1:$B$55,1) the answer is 10.

> >
> > > > > But I would need another formula to display A36 (or the cell's location)
> > > > > The find function isn't working- Hide quoted text -

> >
> > - Show quoted text -

>
>

Reply With Quote
  #10 (permalink)  
Old 07-22-2008, 02:06 PM
=?Utf-8?B?bWFyYw==?=
 
Posts: n/a
Re: Have a value be shown as the referneced cell

because now if I change the data range from C33:R35 instead of R33 it gives
me an answer for N/A?

"Pete_UK" wrote:

> Use this instead of my MIN formula:
>
> =CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33"
>
> You can change the 1 in the SMALL function to 2, 3, 4 etc to get the
> next smallest etc. If you want to show the cell contents as well as
> the reference, you can do this:
>
> =CHAR(MATCH(SMALL(C33:R33,1),C33:R33,0)+66)&"33 contains
> "&SMALL(C33:R33,1)
>
> which shows:
>
> F33 contains 2
>
> with my test data.
>
> Hope this helps.
>
> Pete
>
>
> On Jul 22, 2:41 pm, marc <m...@discussions.microsoft.com> wrote:
> > Sorry I am not using MIN OR MAX but rather SMALL
> >
> >
> >
> > "marc" wrote:
> > > also where is the answer referenced in the formula.

> >
> > > "Max" wrote:

> >
> > > > One play, in say, C1:
> > > > =IF(ISNA(MATCH(MAX($A$1:$B$55,1),$A$1:$A$55,0)),IF (ISNA(MATCH(MAX($A$1:$B$5Â*5,1),$B$1:$B$55,0)),"", "B"&MATCH(MAX($A$1:$B$55,1),$B$1:$B$55,0)),"A"&MAT CHÂ*(MAX($A$1:$B$55,1),$A$1:$A$55,0))

> >
> > > > The above sequentially matches the result from the MAX down col A first,
> > > > then down col B. If there are any ties in the MAX, then only the 1st matched
> > > > instance will be returned.
> > > > --
> > > > Max
> > > > Singapore
> > > >http://savefile.com/projects/236895
> > > > Downloads:16,200 Files:354 Subscribers:53
> > > > xdemechanik
> > > > ---
> > > > "marc" wrote:
> > > > > I am running a formula =Max($a$1:$B$55,1) to find the largest number in a set
> > > > > of data. The answer was found in cell A36.

> >
> > > > > The formula was fine but I was wondering if there is a formula that will
> > > > > display the answer's cell location.

> >
> > > > > The value of A36 is 10.
> > > > > With my formula =Max($a$1:$B$55,1) the answer is 10.

> >
> > > > > But I would need another formula to display A36 (or the cell's location)
> > > > > The find function isn't working- Hide quoted text -

> >
> > - Show quoted text -

>
>

Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Excel


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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



All times are GMT. The time now is 08:20 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Advertising | Libros recomendados | Car Finance | Xbox Mod Chip | Car Insurance



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109