Oct 30 2023 09:01 AM - edited Oct 30 2023 09:16 AM
This is a combination of needlessly complex formula turned into text by coping and pasting as values but i need all of the formulas to be executed (452 rows to be exact) but it excel won't accept it unless i double click individual cell and then enter. Is there any easier way to do it?
Oct 30 2023 09:07 AM
Oct 30 2023 09:08 AM
Change the formula in the selected cell to
=SUMIF($C$9:$C$649,F175,$D$9:$D$649)
and press Ctrl+Enter. You should see the result.
Then double-click the fill handle (the little square) in the lower right corner of the cell.
Oct 30 2023 09:13 AM
Oct 30 2023 09:37 AM
SUMIF works with array formulas (dynamic arrays in modern Excel or CSE in legacy Excel), in which case the formula you show is no more than
= SUMIF(party, party, netAmnt)
where 'party' and 'netAmnt' are defined names applied to your ranges.