Hello again all,
Unable to find the answer via search...
I've created a bullet chart to visualize the information I need for my current project. I'm working to extend the functionality by replacing the fixed references with named ranges, but Excel won't accept it.
The named ranges I created use OFFSETs. I've tested these formulae and they work fine, always returning the range I expect. However, when I edit the chart's data set (or attempt to edit the SERIES formula directly), I get the following error: "We found a problem with one or more formula references in this worksheet." It does not highlight the problem area, but I only receive this error after adding a named range to the SERIES formula.
I've attempted to use INDIRECT, but this also fails. I've also attempted to modify the name definition to include fixed references only, but the formula still won't accept the named range. The named ranges are defined at the workbook level and reference table column (structured references); however I don't believe this to be a problem since it returns the correct range when used independently and I still get the error when using fixed references (R1C1).
I've also attempted to use the workbook name in the SERIES formula to explicitly reference the named range (i.e. 'workbookname.xlsm'!namedrange). This didn't throw an error, but Excel would not accept it as part of the formula.
One example of the named range definition:
The structured table reference refers to the first row of a specific column that I want to use as the base of the series. "SeriesCount" refers to a Named Range that returns a number to determine the appropriate number of rows to include in the series. Again, this definition returns exactly the range I expect it to.
Any idea why I can't used named ranges in the SERIES formula?
Thanks in advance,
Ed
Unable to find the answer via search...
I've created a bullet chart to visualize the information I need for my current project. I'm working to extend the functionality by replacing the fixed references with named ranges, but Excel won't accept it.
The named ranges I created use OFFSETs. I've tested these formulae and they work fine, always returning the range I expect. However, when I edit the chart's data set (or attempt to edit the SERIES formula directly), I get the following error: "We found a problem with one or more formula references in this worksheet." It does not highlight the problem area, but I only receive this error after adding a named range to the SERIES formula.
I've attempted to use INDIRECT, but this also fails. I've also attempted to modify the name definition to include fixed references only, but the formula still won't accept the named range. The named ranges are defined at the workbook level and reference table column (structured references); however I don't believe this to be a problem since it returns the correct range when used independently and I still get the error when using fixed references (R1C1).
I've also attempted to use the workbook name in the SERIES formula to explicitly reference the named range (i.e. 'workbookname.xlsm'!namedrange). This didn't throw an error, but Excel would not accept it as part of the formula.
One example of the named range definition:
Code:
=OFFSET(_chFundsStatus[[#Headers],[Budgeted]],1,0,SeriesCount,1)
Any idea why I can't used named ranges in the SERIES formula?
Thanks in advance,
Ed