In Excel, sum all values in one column in each row where another column is a specific value
If column A contains the amounts to be reimbursed, and column B contains the “yes/no” indicating whether the reimbursement has been made, then either of the following will work, though the first option is recommended: =SUMIF(B:B,”No”,A:A) or =SUMIFS(A:A,B:B,”No”) Here is an example that will display the amounts paid and outstanding for a small set of … Read more