Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have three worksheets at the bottom.
'Assumptions'- where info is filled out 'Results 1'- depending on the model, this results tab may be used 'Results 2'- depending on the model, this results tab may be used In the Assumptions tab, I want to reference cells in either the results 1 tab or results 2 tab depending on which model is being used. How do I use an IF or Vlookup or indirect function to do this? This is my formula: (which works great unless I delete 'results 1' in which case, I want it to look at the same cell in 'results 2') =(-1*0.26*($D$2*'results 1'!$C$3*$D$5*$D$53*(1-$D$4)))*0.5 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Wednesday, March 13, 2013 3:48:21 PM UTC-5, svongal wrote:
I have three worksheets at the bottom. 'Assumptions'- where info is filled out 'Results 1'- depending on the model, this results tab may be used 'Results 2'- depending on the model, this results tab may be used In the Assumptions tab, I want to reference cells in either the results 1 tab or results 2 tab depending on which model is being used. How do I use an IF or Vlookup or indirect function to do this? This is my formula: (which works great unless I delete 'results 1' in which case, I want it to look at the same cell in 'results 2') =(-1*0.26*($D$2*'results 1'!$C$3*$D$5*$D$53*(1-$D$4)))*0.5 -- svongal svongal try this: =if(model = 1,(-1*0.26*($D$2*'results 1'!$C$3*$D$5*$D$53*(1-$D$4)))*0.5,(-1*0.26*($D$2*'results 2'!$C$3*$D$5*$D$53*(1-$D$4)))*0.5) Glen |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi,
Am Wed, 13 Mar 2013 20:48:21 +0000 schrieb svongal: I have three worksheets at the bottom. 'Assumptions'- where info is filled out 'Results 1'- depending on the model, this results tab may be used 'Results 2'- depending on the model, this results tab may be used In the Assumptions tab, I want to reference cells in either the results 1 tab or results 2 tab depending on which model is being used. How do I use an IF or Vlookup or indirect function to do this? if you have the model number in sheet "Assumptions" e.g. in A2 you can use INDIRECT: =(-1*0.26*($D$2*INDIRECT("'Results "&A2&"'!$C$3")*$D$5*$D$53*(1-$D$4)))-0.5 Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
setting one worksheet cell range reference to another worksheet | Excel Programming | |||
I want in one worksheet to relatively link to/reference cells in another without changing the format of the current worksheet. | Excel Discussion (Misc queries) | |||
Reference to ActiveX control on worksheet requires full worksheet name | Excel Programming | |||
Reference the worksheet from a multiple worksheet range function ( | Excel Worksheet Functions | |||
Altering code to reference the worksheet before the active worksheet | Excel Programming |