workharder
New Member
- Joined
- Jan 30, 2012
- Messages
- 5
I have created a named reference that stores functions to get around the 7 nested if statement limit for functions. However when I add the reference in the name manager, it automatically appends the current worksheet name in the variables.
original formula:
When i add the reference it changes to:
I need to use this reference in multiple worksheets. How can i make the function reference the current active worksheet?
I have tried to use
but it still appends the current worksheet name I currently have selected when changing the formula.
original formula:
Code:
=IF($P$8>1.06,0.04,IF($P$8>=1.041,0.03,IF($P$8>=1.021,0.02,IF($P$8>=1.001,0.01,0))))
Code:
=IF(Template!$P$8>1.06,0.04,IF(Template!$P$8>=1.041,0.03,IF(Template!$P$8>=1.021,0.02,IF(Template!$P$8>=1.001,0.01,0))))
I have tried to use
Code:
CELL("filename",$P$8)