Forum Discussion
RNINSF415GMAILCOM
Aug 15, 2019Copper Contributor
QUOTIENTS
IF i WANT TO DIVIDE A NUMERATOR BY ONLY THE NUMBER OF CELLS THAT HAVE AN ENTRY (WHICH CAN VARY), HOW WOULD I DO THAT?
PeterBartholomew1
Aug 15, 2019Silver Contributor
This places a slightly different interpretation on your question. If the data entries lie within a defined Range 'Entries' then
= Numerator / COUNTA(Entries)
would do what you state.
If it were that the range is fully populated but might grow as data is appended then by placing it within a Table the range becomes dynamic. In that case the formula would be
= Numerator / ROWS(Entries)