Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If let's say My A1 cell formula is =sheet2!a2 on my sheet1, and this pulls up
a client's name, and i want to have a formula in a3 of Sheet1, that will pull up the data on =sheet2!b2.. BUT... i want i want the formula to read offset(a1,0,3) Only thing, the offset doesnt read the actual formula that is in A1. How do i get the offset to read the formula in A1. =sheet2!b2, I want it to work so i have a formula set up in the client's number section, that all i have to do is type in the reference in my A column of my Sheet2, in my sheet1 and the client numbers will auto populate.. Is this possible.. it's so hard to explain this proprely i think. Thanks for your help |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In Sheet1,
Try in A3: =IF(A1="","",INDEX(OFFSET(Sheet2!$1:$1,MATCH(A1,Sh eet2!A:A,0)-1,),2)) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "Joe Edwards" wrote: If let's say My A1 cell formula is =sheet2!a2 on my sheet1, and this pulls up a client's name, and i want to have a formula in a3 of Sheet1, that will pull up the data on =sheet2!b2.. BUT... i want i want the formula to read offset(a1,0,3) Only thing, the offset doesnt read the actual formula that is in A1. How do i get the offset to read the formula in A1. =sheet2!b2, I want it to work so i have a formula set up in the client's number section, that all i have to do is type in the reference in my A column of my Sheet2, in my sheet1 and the client numbers will auto populate.. Is this possible.. it's so hard to explain this proprely i think. Thanks for your help |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
In case you are copying A3 across to return similarly
we would need to fix the match col in Sheet2, ie use: Sheet2!$A:$A In A3 would be: =IF(A1="","",INDEX(OFFSET(Sheet2!$1:$1,MATCH(A1,Sh eet2!$A:$A,0)-1,),2)) A3 can now be copied across -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Offset of a minumum | Excel Worksheet Functions | |||
Macro question | Excel Worksheet Functions | |||
Offset Function | Excel Worksheet Functions | |||
Offset Function works in cell, not in named range | Excel Worksheet Functions | |||
Question for use of offset and range | Excel Worksheet Functions |