Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Does anyone know what the equivelant is of the Lotus @xindex function? Its
the function that in effect allows you to do a vertical and horizontal lookup of a table and give you the value of that intersection. Thanks in advance |
#2
![]() |
|||
|
|||
![]()
Excel has a function called INDEX that does this. It can be combined with
MATCH to use the Row and Column Heading to search for items in the table. For example, see: http://www.contextures.com/xlFunctions03.html tj "Monty1952" wrote: Does anyone know what the equivelant is of the Lotus @xindex function? Its the function that in effect allows you to do a vertical and horizontal lookup of a table and give you the value of that intersection. Thanks in advance |
#3
![]() |
|||
|
|||
![]()
If you are just supplying row and column numbers (rather than matching to
row and column headings) use OFFSET: =OFFSET(A1,RowNumber,ColumnNumber) Note that RowNumber and ColumnNumber will be the number of spaces the target cell is offset from the reference cell. In other words, @XINDEX(B2:B10,2,3) would be translated as OFFSET(B2,1,2) or OFFSET(A1,2,3) Tim C "Monty1952" wrote in message ... Does anyone know what the equivelant is of the Lotus @xindex function? Its the function that in effect allows you to do a vertical and horizontal lookup of a table and give you the value of that intersection. Thanks in advance |
#4
![]() |
|||
|
|||
![]()
This file might be a help:
http://www.bygsoftware.com/examples/.../xindexvba.zip It's in the "Excel for Lotus 123 Users" section on page: http://www.bygsoftware.com/examples/examples.htm In Excel there is no direct equivalent for Lotus 123's XINDEX function. This workbook shows two Excel formula constructions that achieve the same result. The first example uses two additional inputs. It uses the Excel functions: INDEX and MATCH The second example uses the same inputs as the Lotus XINDEX function. It uses the Excel functions: INDEX, MATCH and OFFSET. There are also two additional pieces of VBA showing how to use this in code and capture an error condition. The code is open and commented. There is also an alternative construction using SUMPRODUCT at: http://www.bygsoftware.com/Excel/fun...sumproduct.htm Andy "Monty1952" wrote in message ... Does anyone know what the equivelant is of the Lotus @xindex function? Its the function that in effect allows you to do a vertical and horizontal lookup of a table and give you the value of that intersection. Thanks in advance |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2003 FAILS, but Excel 2000 SUCCEEDS ??? | Excel Discussion (Misc queries) | |||
how do i transfer lotus files to excel | Excel Discussion (Misc queries) | |||
LOTUS 123 TO EXCEL 2003 | Excel Discussion (Misc queries) | |||
Still Convert Lotus 123 to Excel 2003 | Excel Discussion (Misc queries) | |||
import Lotus file to Excel | Excel Discussion (Misc queries) |