A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
Hi,
Any structured reference throws an error in CF but there's a workaround.
This very simple formula fails if used in CF but works fine on the worksheet:-
=SUM(Table1[Sales])>100
Include the use of the INDIRECT function and it works in CF
=SUM(INDIRECT("Table1[Sales]"))>100
I have never found it documented anywhere so cannot confirm that all structured ref's would fail but have never found one that works<g>