I am looking to find out if there is a way to do this:
I have a vector of values say (D19) witch equal different weeks. I fill
in a cell each week starting with D1, and after 9 weeks I fill in D9. I need
to create a formula that will find the furthest cell to the right to make my
solution accurate.
Basically, I have a constant number witch is integrated into the formula,
but my variable will change... and hopefully automatically based on it being
the furthest cell to the right or whatever the technical way of saying it
would be.
Thanks for your help!
Hi Mike
If the data is numeric, then for D1
=MATCH(9.99999999999999E 307,1:1)
if it is text then
=MATCH(REPT(quot;Zquot;,255),1:1)
Copy down and it will alter for rows 2:9
--
Regards
Roger Govier
Mike gt; wrote:
gt; I am looking to find out if there is a way to do this:
gt;
gt; I have a vector of values say (D19) witch equal different weeks. I
gt; fill in a cell each week starting with D1, and after 9 weeks I fill
gt; in D9. I need to create a formula that will find the furthest cell
gt; to the right to make my solution accurate.
gt;
gt; Basically, I have a constant number witch is integrated into the
gt; formula, but my variable will change... and hopefully automatically
gt; based on it being the furthest cell to the right or whatever the
gt; technical way of saying it would be.
gt;
gt; Thanks for your help!
Hi, sorry, but that doesn't make sense to me. I am going to enter in
different values in d1 through d9, but the formula where I divide 88/(the
furthest number to the right out of d1-d9). If I put in a match formula in
d1-9, then I won't be able to have a value... right?
quot;Roger Govierquot; wrote:
gt; Hi Mike
gt;
gt; If the data is numeric, then for D1
gt; =MATCH(9.99999999999999E 307,1:1)
gt; if it is text then
gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt; Copy down and it will alter for rows 2:9
gt;
gt; --
gt; Regards
gt;
gt; Roger Govier
gt;
gt;
gt;
gt; Mike gt; wrote:
gt; gt; I am looking to find out if there is a way to do this:
gt; gt;
gt; gt; I have a vector of values say (D19) witch equal different weeks. I
gt; gt; fill in a cell each week starting with D1, and after 9 weeks I fill
gt; gt; in D9. I need to create a formula that will find the furthest cell
gt; gt; to the right to make my solution accurate.
gt; gt;
gt; gt; Basically, I have a constant number witch is integrated into the
gt; gt; formula, but my variable will change... and hopefully automatically
gt; gt; based on it being the furthest cell to the right or whatever the
gt; gt; technical way of saying it would be.
gt; gt;
gt; gt; Thanks for your help!
gt;
gt;
gt;
You already know that the furthest number is 88?
Is it the numerator or the denominator?
How about a more explicit explanation, with examples of data and exactly
what you're looking to accomplish?
--
Regards,
RD
----------------------------------------------------------------------------
-------------------
Please keep all correspondence within the Group, so all may benefit !
----------------------------------------------------------------------------
-------------------
quot;Mikequot; gt; wrote in message
...
Hi, sorry, but that doesn't make sense to me. I am going to enter in
different values in d1 through d9, but the formula where I divide 88/(the
furthest number to the right out of d1-d9). If I put in a match formula in
d1-9, then I won't be able to have a value... right?
quot;Roger Govierquot; wrote:
gt; Hi Mike
gt;
gt; If the data is numeric, then for D1
gt; =MATCH(9.99999999999999E 307,1:1)
gt; if it is text then
gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt; Copy down and it will alter for rows 2:9
gt;
gt; --
gt; Regards
gt;
gt; Roger Govier
gt;
gt;
gt;
gt; Mike gt; wrote:
gt; gt; I am looking to find out if there is a way to do this:
gt; gt;
gt; gt; I have a vector of values say (D19) witch equal different weeks. I
gt; gt; fill in a cell each week starting with D1, and after 9 weeks I fill
gt; gt; in D9. I need to create a formula that will find the furthest cell
gt; gt; to the right to make my solution accurate.
gt; gt;
gt; gt; Basically, I have a constant number witch is integrated into the
gt; gt; formula, but my variable will change... and hopefully automatically
gt; gt; based on it being the furthest cell to the right or whatever the
gt; gt; technical way of saying it would be.
gt; gt;
gt; gt; Thanks for your help!
gt;
gt;
gt;
Hi Mike
You are wanting the value in the cell furthest right from D1, not the
cell location, so change the formula to
=LOOKUP(9.99999999999999E 307,1:1)
e.g. =(88/LOOKUP(9.99999999999999E 307,1:1))
Obviously, which cell you put the formula in is up to you (I agree, not
in D,1 although my wording was totally unclear, I mean't this would give
the value relative to D1).
If you are wanting the formula to go on the same row, and your data does
not extend beyond say column N, then in O1
=(88/LOOKUP(9.99999999999999E 307,D1:N1))
--
Regards
Roger Govier
Mike gt; wrote:
gt; Hi, sorry, but that doesn't make sense to me. I am going to enter in
gt; different values in d1 through d9, but the formula where I divide
gt; 88/(the furthest number to the right out of d1-d9). If I put in a
gt; match formula in d1-9, then I won't be able to have a value... right?
gt;
gt; quot;Roger Govierquot; wrote:
gt;
gt;gt; Hi Mike
gt;gt;
gt;gt; If the data is numeric, then for D1
gt;gt; =MATCH(9.99999999999999E 307,1:1)
gt;gt; if it is text then
gt;gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt;gt; Copy down and it will alter for rows 2:9
gt;gt;
gt;gt; --
gt;gt; Regards
gt;gt;
gt;gt; Roger Govier
gt;gt;
gt;gt;
gt;gt;
gt;gt; Mike gt; wrote:
gt;gt;gt; I am looking to find out if there is a way to do this:
gt;gt;gt;
gt;gt;gt; I have a vector of values say (D19) witch equal different weeks.
gt;gt;gt; I fill in a cell each week starting with D1, and after 9 weeks I
gt;gt;gt; fill in D9. I need to create a formula that will find the furthest
gt;gt;gt; cell to the right to make my solution accurate.
gt;gt;gt;
gt;gt;gt; Basically, I have a constant number witch is integrated into the
gt;gt;gt; formula, but my variable will change... and hopefully automatically
gt;gt;gt; based on it being the furthest cell to the right or whatever the
gt;gt;gt; technical way of saying it would be.
gt;gt;gt;
gt;gt;gt; Thanks for your help!
yes, sorry. I should have filled in the spaces a little bit. I am making a
spreadsheet for an office competition. We are having a weight loss
competition over the next 3 months with weekly weigh-ins every monday.
Basically, we're competing based on percentage of weight lost, and every week
I want the percentage to be updated based on the new weight. So, I have 13
weeks where I'm going to be inputing the new numbers for each person. I
don't want to go in and change the formula each week to be up to date with
the new weight, so I was hoping that there was a way for excel to take the
value in the furthest right cell in a row.
The formula will be something like this (100%-(Cell furthest to the right
between g4:s4)/(original weight)). That will give me the percentage of
weight lost...
I hope this makes a little more sense... and thank you so much for your help!
quot;RagDyeRquot; wrote:
gt; You already know that the furthest number is 88?
gt;
gt; Is it the numerator or the denominator?
gt;
gt; How about a more explicit explanation, with examples of data and exactly
gt; what you're looking to accomplish?
gt; --
gt;
gt; Regards,
gt;
gt; RD
gt; ----------------------------------------------------------------------------
gt; -------------------
gt; Please keep all correspondence within the Group, so all may benefit !
gt; ----------------------------------------------------------------------------
gt; -------------------
gt;
gt; quot;Mikequot; gt; wrote in message
gt; ...
gt; Hi, sorry, but that doesn't make sense to me. I am going to enter in
gt; different values in d1 through d9, but the formula where I divide 88/(the
gt; furthest number to the right out of d1-d9). If I put in a match formula in
gt; d1-9, then I won't be able to have a value... right?
gt;
gt; quot;Roger Govierquot; wrote:
gt;
gt; gt; Hi Mike
gt; gt;
gt; gt; If the data is numeric, then for D1
gt; gt; =MATCH(9.99999999999999E 307,1:1)
gt; gt; if it is text then
gt; gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt; gt; Copy down and it will alter for rows 2:9
gt; gt;
gt; gt; --
gt; gt; Regards
gt; gt;
gt; gt; Roger Govier
gt; gt;
gt; gt;
gt; gt;
gt; gt; Mike gt; wrote:
gt; gt; gt; I am looking to find out if there is a way to do this:
gt; gt; gt;
gt; gt; gt; I have a vector of values say (D19) witch equal different weeks. I
gt; gt; gt; fill in a cell each week starting with D1, and after 9 weeks I fill
gt; gt; gt; in D9. I need to create a formula that will find the furthest cell
gt; gt; gt; to the right to make my solution accurate.
gt; gt; gt;
gt; gt; gt; Basically, I have a constant number witch is integrated into the
gt; gt; gt; formula, but my variable will change... and hopefully automatically
gt; gt; gt; based on it being the furthest cell to the right or whatever the
gt; gt; gt; technical way of saying it would be.
gt; gt; gt;
gt; gt; gt; Thanks for your help!
gt; gt;
gt; gt;
gt; gt;
gt;
gt;
gt;
Awesome, that worked! Sorry for all the confusion. I'm currious though,
would you mind explaining to me the 9.99999 part?
quot;Roger Govierquot; wrote:
gt; Hi Mike
gt;
gt; You are wanting the value in the cell furthest right from D1, not the
gt; cell location, so change the formula to
gt; =LOOKUP(9.99999999999999E 307,1:1)
gt;
gt; e.g. =(88/LOOKUP(9.99999999999999E 307,1:1))
gt;
gt; Obviously, which cell you put the formula in is up to you (I agree, not
gt; in D,1 although my wording was totally unclear, I mean't this would give
gt; the value relative to D1).
gt;
gt; If you are wanting the formula to go on the same row, and your data does
gt; not extend beyond say column N, then in O1
gt; =(88/LOOKUP(9.99999999999999E 307,D1:N1))
gt;
gt; --
gt; Regards
gt;
gt; Roger Govier
gt;
gt;
gt;
gt; Mike gt; wrote:
gt; gt; Hi, sorry, but that doesn't make sense to me. I am going to enter in
gt; gt; different values in d1 through d9, but the formula where I divide
gt; gt; 88/(the furthest number to the right out of d1-d9). If I put in a
gt; gt; match formula in d1-9, then I won't be able to have a value... right?
gt; gt;
gt; gt; quot;Roger Govierquot; wrote:
gt; gt;
gt; gt;gt; Hi Mike
gt; gt;gt;
gt; gt;gt; If the data is numeric, then for D1
gt; gt;gt; =MATCH(9.99999999999999E 307,1:1)
gt; gt;gt; if it is text then
gt; gt;gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt; gt;gt; Copy down and it will alter for rows 2:9
gt; gt;gt;
gt; gt;gt; --
gt; gt;gt; Regards
gt; gt;gt;
gt; gt;gt; Roger Govier
gt; gt;gt;
gt; gt;gt;
gt; gt;gt;
gt; gt;gt; Mike gt; wrote:
gt; gt;gt;gt; I am looking to find out if there is a way to do this:
gt; gt;gt;gt;
gt; gt;gt;gt; I have a vector of values say (D19) witch equal different weeks.
gt; gt;gt;gt; I fill in a cell each week starting with D1, and after 9 weeks I
gt; gt;gt;gt; fill in D9. I need to create a formula that will find the furthest
gt; gt;gt;gt; cell to the right to make my solution accurate.
gt; gt;gt;gt;
gt; gt;gt;gt; Basically, I have a constant number witch is integrated into the
gt; gt;gt;gt; formula, but my variable will change... and hopefully automatically
gt; gt;gt;gt; based on it being the furthest cell to the right or whatever the
gt; gt;gt;gt; technical way of saying it would be.
gt; gt;gt;gt;
gt; gt;gt;gt; Thanks for your help!
gt;
gt;
gt;
gt; wrote
gt;gt;gt; right?
gt;gt;gt; quot;Roger Govierquot; wrote:
gt;gt;gt;gt; Hi Mike
gt;gt;gt;gt; If the data is numeric, then for D1
gt;gt;gt;gt; =MATCH(9.99999999999999E 307,1:1)
gt;gt;gt;gt; if it is text then
gt;gt;gt;gt; =MATCH(REPT(quot;Zquot;,255),1:1)
gt;gt;gt;gt; Copy down and it will alter for rows 2:9
gt;gt;gt;gt; --
gt;gt;gt;gt; Regards
gt;gt;gt;gt; Roger Govier
gt;gt;gt;gt; Mike gt; wrote:
gt;gt;gt;gt;gt; I am looking to find out if there is a way to do this:
gt;gt;gt;gt;gt; I have a vector of values say (D19) witch equal different weeks.
gt;gt;gt;gt;gt; I fill in a cell each week starting with D1, and after 9 weeks I
gt;gt;gt;gt;gt; fill in D9. I need to create a formula that will find the
gt;gt;gt;gt;gt; furthest cell to the right to make my solution accurate.
gt;gt;gt;gt;gt; Basically, I have a constant number witch is integrated into the
gt;gt;gt;gt;gt; formula, but my variable will change... and hopefully
gt;gt;gt;gt;gt; automatically based on it being the furthest cell to the right or
gt;gt;gt;gt;gt; whatever the technical way of saying it would be.
gt;gt;gt;gt;gt; Thanks for your help!
Hi Mike
Glad it worked out for you.
Basically, that is the largest number that could be found in Excel, and
because it dosen't exist in the range being searched, Lookup is giving
the last value found that was not equal to that number.
For the range of values you are considering, then 999 would have been
plenty high enough!!!--
Regards
Roger Govier
Mike gt; wrote:
gt; Awesome, that worked! Sorry for all the confusion. I'm currious
gt; though, would you mind explaining to me the 9.99999 part?
gt;
gt; quot;Roger Govierquot; wrote:
gt;
gt;gt; Hi Mike
gt;gt;
gt;gt; You are wanting the value in the cell furthest right from D1, not the
gt;gt; cell location, so change the formula to
gt;gt; =LOOKUP(9.99999999999999E 307,1:1)
gt;gt;
gt;gt; e.g. =(88/LOOKUP(9.99999999999999E 307,1:1))
gt;gt;
gt;gt; Obviously, which cell you put the formula in is up to you (I agree,
gt;gt; not in D,1 although my wording was totally unclear, I mean't this
gt;gt; would give the value relative to D1).
gt;gt;
gt;gt; If you are wanting the formula to go on the same row, and your data
gt;gt; does not extend beyond say column N, then in O1
gt;gt; =(88/LOOKUP(9.99999999999999E 307,D1:N1))
gt;gt;
gt;gt; --
gt;gt; Regards
gt;gt;
gt;gt; Roger Govier
gt;gt;
gt;gt;
gt;gt;
gt;gt; Mike gt; wrote:
gt;gt;gt; Hi, sorry, but that doesn't make sense to me. I am going to enter
gt;gt;gt; in different values in d1 through d9, but the formula where I divide
gt;gt;gt; 88/(the furthest number to the right out of d1-d9). If I put in a
- Jul 25 Fri 2008 20:45
Index, Lookup and Vectors/Arrays
close
全站熱搜
留言列表
發表留言
留言列表

