Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default how to find value on the cross of row and column

Hi,

I have Excel table like this

C1 C2 C3 C4 . . .
A 1 5 5 7
B 2 8 6 8
C 5 7 1 9
D 7 5 7 10
E 9 4 7 9
F 6 5 5 5
..
..
..

I have big size table like this. How i can write formula or program to find
value in this table on the intersection of row and column.

Let i know column name value "C3" and row name value "D". how i can find
value on the intersection of this row and column?
Does exists such formula?

Thank you in advance,
Lado


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default how to find value on the cross of row and column

With your table in A1 thru E7:

=OFFSET(A1,MATCH("D",A:A),MATCH("C3",1:1))
--
Gary''s Student - gsnu2007L
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default how to find value on the cross of row and column

Thank you it works fine!
Lado


"Gary''s Student" wrote in message
...
With your table in A1 thru E7:

=OFFSET(A1,MATCH("D",A:A),MATCH("C3",1:1))
--
Gary''s Student - gsnu2007L



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default how to find value on the cross of row and column

Try this

=INDEX(A1:E7,MATCH(H2,A1:A7,0),MATCH(H1,A1:E1,0))

Where

H1 is the column header C3
H2 is the row D

Mike

"L.K." wrote:

Hi,

I have Excel table like this

C1 C2 C3 C4 . . .
A 1 5 5 7
B 2 8 6 8
C 5 7 1 9
D 7 5 7 10
E 9 4 7 9
F 6 5 5 5
..
..
..

I have big size table like this. How i can write formula or program to find
value in this table on the intersection of row and column.

Let i know column name value "C3" and row name value "D". how i can find
value on the intersection of this row and column?
Does exists such formula?

Thank you in advance,
Lado



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default how to find value on the cross of row and column

Thank you so much!
Lado

"Mike H" wrote in message
...
Try this

=INDEX(A1:E7,MATCH(H2,A1:A7,0),MATCH(H1,A1:E1,0))

Where

H1 is the column header C3
H2 is the row D

Mike

"L.K." wrote:

Hi,

I have Excel table like this

C1 C2 C3 C4 . . .
A 1 5 5 7
B 2 8 6 8
C 5 7 1 9
D 7 5 7 10
E 9 4 7 9
F 6 5 5 5
..
..
..

I have big size table like this. How i can write formula or program to
find
value in this table on the intersection of row and column.

Let i know column name value "C3" and row name value "D". how i can find
value on the intersection of this row and column?
Does exists such formula?

Thank you in advance,
Lado







  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,651
Default how to find value on the cross of row and column

On Sat, 7 Mar 2009 12:33:54 -0000, "L.K." wrote:

Hi,

I have Excel table like this

C1 C2 C3 C4 . . .
A 1 5 5 7
B 2 8 6 8
C 5 7 1 9
D 7 5 7 10
E 9 4 7 9
F 6 5 5 5
.
.
.

I have big size table like this. How i can write formula or program to find
value in this table on the intersection of row and column.

Let i know column name value "C3" and row name value "D". how i can find
value on the intersection of this row and column?
Does exists such formula?

Thank you in advance,
Lado


If you have "legal" name values, you can use the Intersection Operator
(<space).

Of course, many of the "names" you have for your columns and rows are not
legal, but a formula like: =C3 D will return the value at the
intersection.

Translated into legal Excel names, the formula might really look like:

=_C3 D

Note the underscore prior to the C (since C is not a legal name).
--ron
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 12
Default how to find value on the cross of row and column

Thank you Ron,
It is very interesting decision.
Lado

"Ron Rosenfeld" wrote in message
...
On Sat, 7 Mar 2009 12:33:54 -0000, "L.K." wrote:

Hi,

I have Excel table like this

C1 C2 C3 C4 . . .
A 1 5 5 7
B 2 8 6 8
C 5 7 1 9
D 7 5 7 10
E 9 4 7 9
F 6 5 5 5
.
.
.

I have big size table like this. How i can write formula or program to
find
value in this table on the intersection of row and column.

Let i know column name value "C3" and row name value "D". how i can find
value on the intersection of this row and column?
Does exists such formula?

Thank you in advance,
Lado


If you have "legal" name values, you can use the Intersection Operator
(<space).

Of course, many of the "names" you have for your columns and rows are not
legal, but a formula like: =C3 D will return the value at the
intersection.

Translated into legal Excel names, the formula might really look like:

=_C3 D

Note the underscore prior to the C (since C is not a legal name).
--ron



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
What is cross totalling and where do i find it? Matt Excel Discussion (Misc queries) 3 March 25th 08 07:50 AM
how to select a single column when this column cross a merged cell cnEagle Excel Programming 1 November 13th 07 04:49 AM
Cross worksheet find and paste TheIconoclast Excel Programming 6 January 25th 06 08:04 PM
cannot find cross and tick box just below the toolbars SA UK Setting up and Configuration of Excel 2 September 8th 05 09:50 AM
How do I find a cross reference value Jo Davis Excel Discussion (Misc queries) 2 November 30th 04 12:56 PM


All times are GMT +1. The time now is 12:41 AM.

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"