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

How can I color dots in a xy scatterplot according to column value?

Non-VBA Solution: You need to make an additional group of data for each color group that represent the Y values for that particular group. You can use these groups to make multiple data sets within your graph. Here is an example using your data: A B C D E F G ———————————————————————————————————————- 1| COMPANY XVALUE … Read more