Forum Discussion
copy and paste a formula that does not change the cell location
There are several ways to do that (please see attached file)
My suggestion is to change worksheets name to months name:
sheet1 change to Jan
sheet2 change to Feb etc
use INDIRECT formula combined with "dollar sign" cells address (see first 4 clients)
=INDIRECT(B$1&"!B2")
but... instead of manually finding the cells where you want the information pulled from use SUMIF function combined with INDIRECT (see customers 5 - 19)
=SUMIF(INDIRECT(B$1&"!$A:$A"),$A7,INDIRECT(B$1&"!$B:$B"))
then regardless of what order you have entered customers, it will calculate the sum of the income
Thank you very much!! The INDIRECT formula worked beautifully!
I'm not sure how the second one works exactly, it is over my head a bit. But the spreadsheets I'm pulling data from are not exactly straightforward. There are several factors involved which is why I need to find it manually. Hopefully it will help someone else though. I truly appreciate your help and creating this spreadsheet to explain it.