A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

I found Row 14 in wksh 2, can I get the value of J14 into wksh 1?



 
 
Thread Tools Display Modes
  #11  
Old November 12th, 2008, 02:45 AM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default I found Row 14 in wksh 2, can I get the value of J14 into wksh

Think of INDEX as a storage "container" used in a formula.

=INDEX(A1:A10

We have the values in the range A1:A10 "stored in the container". Now, we
use the other arguments of the INDEX function to tell it which one of those
stored values we want as the result of the formula.

Consider this simple example:

...........A
1.....Tom
2.....Sue
3.....Joe
4.....Lisa
5.....Karen

=INDEX(A1:A5,4)

In it's simplest form, that formula means return the 4th item from the
indexed ("stored") values.

The 4th value = Lisa

The arguments used to get the result you want can be very simple like above
or they can be very complex depending on the application.


--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
This one worked as well. Can you tell me why I would use "INDEX"? what
does
it do?

THANK YOU!

"T. Valko" wrote:

Enter this formula in cell S4:

=INDEX('August 31, 2008 (2)'!J:J,MATCH(C4,'August 31, 2008 (2)'!C:C,0))

--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
Hello.

I feel like I've gotten far, but not far enough...If you can help, I
would
be greatful. Thank you.

I used this formula to identify the row I was looking for in my
worksheet
titled, August 31, 2008:
=MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE)

The answer is 14

Now I need to bring the value of cell J14 in august 31, 2008 over to
worksheet Nov 6, 2008 and place it in cell S4.

Can you help me with a formula to do that? It seems like it should be
easy,
but my mind keeps going in circles...

Thank you.






  #12  
Old November 13th, 2008, 01:57 PM posted to microsoft.public.excel.worksheet.functions
grateful
external usenet poster
 
Posts: 34
Default I found Row 14 in wksh 2, can I get the value of J14 into wksh

Wow. Thank you so much. I understand it now, when you think of it as a
container. I had seen it in Excel help as I was originally trying to find a
formula for my dilemna, and I kept coming across INDEX, but I have to say I
didn't undersatnd how it worked.

Thank you very much!



"T. Valko" wrote:

Think of INDEX as a storage "container" used in a formula.

=INDEX(A1:A10

We have the values in the range A1:A10 "stored in the container". Now, we
use the other arguments of the INDEX function to tell it which one of those
stored values we want as the result of the formula.

Consider this simple example:

...........A
1.....Tom
2.....Sue
3.....Joe
4.....Lisa
5.....Karen

=INDEX(A1:A5,4)

In it's simplest form, that formula means return the 4th item from the
indexed ("stored") values.

The 4th value = Lisa

The arguments used to get the result you want can be very simple like above
or they can be very complex depending on the application.


--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
This one worked as well. Can you tell me why I would use "INDEX"? what
does
it do?

THANK YOU!

"T. Valko" wrote:

Enter this formula in cell S4:

=INDEX('August 31, 2008 (2)'!J:J,MATCH(C4,'August 31, 2008 (2)'!C:C,0))

--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
Hello.

I feel like I've gotten far, but not far enough...If you can help, I
would
be greatful. Thank you.

I used this formula to identify the row I was looking for in my
worksheet
titled, August 31, 2008:
=MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE)

The answer is 14

Now I need to bring the value of cell J14 in august 31, 2008 over to
worksheet Nov 6, 2008 and place it in cell S4.

Can you help me with a formula to do that? It seems like it should be
easy,
but my mind keeps going in circles...

Thank you.






  #13  
Old November 13th, 2008, 01:59 PM posted to microsoft.public.excel.worksheet.functions
grateful
external usenet poster
 
Posts: 34
Default I found Row 14 in wksh 2, can I get the value of J14 into wksh

Ok, I will have to look at it again and see if I understand it, now that I
see how it works. Thank you.

"David Biddulph" wrote:

INDIRECT is an Excel function, and you can look it up in Excel help. The
same applies to INDEX, to answer one of your other questions on this thread.
--
David Biddulph

"grateful" wrote in message
...
Wow! Thank you so much! It works perfectly, and I am able to continue
working.

I think I understand most of the formula. I am not sure what "Indirect"
means, or when to use it.

But this works and I am so happy! Thank you very much!



"Sheeloo" wrote:

Try
=INDIRECT("'August 31, 2008 (2)'!J"&MATCH(C4,'August 31, 2008
(2)'!C:C,FALSE))

It has three parts
First a string 'August 31, 2008 (2)'!J with quotes around it,
second a & to join the first part with the third part, which is your
formula returning 14.
The string within INDIRECT evaluates to 'August 31, 2008 (2)'!J14
and Indirect goes to that address and fetches the result.

"grateful" wrote:

Hello.

I feel like I've gotten far, but not far enough...If you can help, I
would
be greatful. Thank you.

I used this formula to identify the row I was looking for in my
worksheet
titled, August 31, 2008:
=MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE)

The answer is 14

Now I need to bring the value of cell J14 in august 31, 2008 over to
worksheet Nov 6, 2008 and place it in cell S4.

Can you help me with a formula to do that? It seems like it should be
easy,
but my mind keeps going in circles...

Thank you.




  #14  
Old November 13th, 2008, 06:33 PM posted to microsoft.public.excel.worksheet.functions
T. Valko
external usenet poster
 
Posts: 15,759
Default I found Row 14 in wksh 2, can I get the value of J14 into wksh

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"grateful" wrote in message
news
Wow. Thank you so much. I understand it now, when you think of it as a
container. I had seen it in Excel help as I was originally trying to find
a
formula for my dilemna, and I kept coming across INDEX, but I have to say
I
didn't undersatnd how it worked.

Thank you very much!



"T. Valko" wrote:

Think of INDEX as a storage "container" used in a formula.

=INDEX(A1:A10

We have the values in the range A1:A10 "stored in the container". Now, we
use the other arguments of the INDEX function to tell it which one of
those
stored values we want as the result of the formula.

Consider this simple example:

...........A
1.....Tom
2.....Sue
3.....Joe
4.....Lisa
5.....Karen

=INDEX(A1:A5,4)

In it's simplest form, that formula means return the 4th item from the
indexed ("stored") values.

The 4th value = Lisa

The arguments used to get the result you want can be very simple like
above
or they can be very complex depending on the application.


--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
This one worked as well. Can you tell me why I would use "INDEX"?
what
does
it do?

THANK YOU!

"T. Valko" wrote:

Enter this formula in cell S4:

=INDEX('August 31, 2008 (2)'!J:J,MATCH(C4,'August 31, 2008
(2)'!C:C,0))

--
Biff
Microsoft Excel MVP


"grateful" wrote in message
...
Hello.

I feel like I've gotten far, but not far enough...If you can help, I
would
be greatful. Thank you.

I used this formula to identify the row I was looking for in my
worksheet
titled, August 31, 2008:
=MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE)

The answer is 14

Now I need to bring the value of cell J14 in august 31, 2008 over to
worksheet Nov 6, 2008 and place it in cell S4.

Can you help me with a formula to do that? It seems like it should
be
easy,
but my mind keeps going in circles...

Thank you.








  #15  
Old September 7th, 2009, 09:23 PM posted to microsoft.public.excel.worksheet.functions
grateful
external usenet poster
 
Posts: 34
Default I found Row 14 in wksh 2, can I get the value of J14 into wksh

HI there,

I don't know if you are still around or still able to help me. It's a year
later, and I find myslef needing to add on to this formula....and as much as
I try to fool with it...to no avail.

I have this formula (It works perfectly): =IF(ISERROR((INDIRECT("'August 31,
2008'!H"&MATCH(C7,'August 31, 2008'!C:C,FALSE)) + H7)/(INDIRECT("'August 31,
2008'!J"&MATCH(C7,'August 31,
2008'!C:C,FALSE))+J7)),IF(L70.01,L7,""),((INDIREC T("'August 31,
2008'!H"&MATCH(C7,'August 31, 2008'!C:C,FALSE)) + H7)/(INDIRECT("'August 31,
2008'!J"&MATCH(C7,'August 31, 2008'!C:C,FALSE))+J7)))

What I need to do is now incorporate information from another worksheet:
August 28, 2009

In the N column is where I incorporated the formula above in my current
sheet. It compared info from Sheet August 31, 2008 and added any relevant
info into my current sheet. Now I need it to analyze August 31, 2008 and
August 27, 2009 and work out the same rate. If the C cell match, to add the
sums of cells H in all three sheets, and the sums of cells J in all three
cells, and divide the sums H/J in Cell 3.

Does that make any sense?

Thank you for all the help.



"Sheeloo" wrote:

Try
=INDIRECT("'August 31, 2008 (2)'!J"&MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE))

It has three parts
First a string 'August 31, 2008 (2)'!J with quotes around it,
second a & to join the first part with the third part, which is your
formula returning 14.
The string within INDIRECT evaluates to 'August 31, 2008 (2)'!J14
and Indirect goes to that address and fetches the result.

"grateful" wrote:

Hello.

I feel like I've gotten far, but not far enough...If you can help, I would
be greatful. Thank you.

I used this formula to identify the row I was looking for in my worksheet
titled, August 31, 2008:
=MATCH(C4,'August 31, 2008 (2)'!C:C,FALSE)

The answer is 14

Now I need to bring the value of cell J14 in august 31, 2008 over to
worksheet Nov 6, 2008 and place it in cell S4.

Can you help me with a formula to do that? It seems like it should be easy,
but my mind keeps going in circles...

Thank you.

 




Thread Tools
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 On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:19 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.