With reference to the post, Excel 2010: Create named range without a sheet reference in the formula, I would like to know can it be done using non-volatile function because I have 200 sheets to apply such type of formula.
Description of the issue: In Name Manager I created a named range with this reference =sum($O$1:$O$15), Excel automatically inserts the current sheet name prior to the $O$1:$O$15. I need this to just stay $O$1:$O$15 in order to use this same reference on other sheets. I don't want to create a named range for each sheet.
How can I get this named reference to work on any sheet without using volatile function, such as indirect method?
I tried using index function like =sum(index($A:$XFD,1,15):index($A:$XFD,100,15)) but the excel automatically change the formula as =SUM(INDEX('sheet'!$1:$1048576,1,15):INDEX('sheet'!$1:$1048576,100,15))
Any brilliant idea please. Thank you in advance.