3
I've been tasked with making changes to an Excel 2010 spreadsheet I know little about. I was pretty good with Excel about a decade ago, but I'm not really sure how to look-up the definitions of particular formulas I see used in cells.
For instance, in one cell I see what I assume is a function call =CEMPRICE!$L$19
, I assume this is a call to function CEMPRICE
with the contents of cell L19
.
Where do I find the definition of CEMPRICE
and how it works?
5That is not a function call, that is a call to the worksheet CEMPRICE (it would not be a valid statement otherwise). Check if your workbook has any hidden worksheets. If it was a function call, it would appear as
=CEMPRICE($L$19)
with parentheses. A name followed by an exclamation mark is a sheet reference. – Breakthrough – 2011-06-27T18:45:22.950