Forum Discussion
shyam_amara
Apr 09, 2019Copper Contributor
HELP WITH FORMULAS TO AUTO-POPULATE A TABLE
I am looking for help with the attached sheet, where I have student names in one column and would like to extract their marks in English scored in H1 and H2. In the current sheet I have entered the ...
- Apr 10, 2019
shyam_amara , you are welcome. Another useful function is IFERROR() to wrap any error, not only #N/A
PeterBartholomew1
Apr 09, 2019Silver Contributor
An alternative strategy using SUMIFS to return the required values.
= SUMIFS( Results[English], Results[Match Number], match, Results[Student Name], Class1Name )
I have chosen to enter the formula as an array formula but implicit intersection will also work.