Perhaps someone can point me in the right direction:
I have a sheet that contains multiple transactions from the bank, which I import from fixed length txt.
I added names to each range to make it easier for entering formulas, etc.
I need to get the sum of each AMOUNT column that contains records from any part of the range FULLNAME that is also from DEPT 908 and ACCT is 252.
But, I also need to be able to get multiple records added together and set what FULLNAME values. (Multiple records, same column)
hope that makes sense. Currently I am using SUMIFS and can pull only one persons FULLNAME. When I add another, the second name never adds..
Thanks
I have a sheet that contains multiple transactions from the bank, which I import from fixed length txt.
I added names to each range to make it easier for entering formulas, etc.
I need to get the sum of each AMOUNT column that contains records from any part of the range FULLNAME that is also from DEPT 908 and ACCT is 252.
But, I also need to be able to get multiple records added together and set what FULLNAME values. (Multiple records, same column)
hope that makes sense. Currently I am using SUMIFS and can pull only one persons FULLNAME. When I add another, the second name never adds..
Thanks
Code:
=SUMIFS(AMOUNT,FULLNAME,{"CARDHOLDER1","CARDHOLDER2"},DEPT,908,ACCT,252)