Forum Discussion

RNINSF415GMAILCOM's avatar
RNINSF415GMAILCOM
Copper Contributor
Aug 15, 2019

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?

2 Replies

  • RNINSF415GMAILCOM 

    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)

     

Resources