Please help, how to enter a formula into sheet 2 using data in she

S

skippy0070

Sorry if this post went through earlier, having some issues on my end.

I have a list of data in sheet 1 of a workbook and I would like to create a
data generator on sheet 2 of the workbook using the data in sheet one. I have
the formula which works in sheet 1 but when I move it to sheet 2 the formula
is no longer valid. The formula is “=SUMIF(B11:B2153,"AC",C11:C2153)â€.

Is there a way to move these formulas to other sheets in a workbook using
data on different pages?

Thanks in advance for any help.
 
E

Elkar

You will need to add the Sheet Name to the range references in your formula:

=SUMIF('Sheet1'!B11:B2153,"AC",'Sheet1'!C11:C2153)

HTH
Elkar
 
S

skippy0070

That works great, thank you.

Elkar said:
You will need to add the Sheet Name to the range references in your formula:

=SUMIF('Sheet1'!B11:B2153,"AC",'Sheet1'!C11:C2153)

HTH
Elkar
 
F

Fred Smith

Yes, just precede the cell addresses with the sheet name, as in:
“=SUMIF(Sheet1!B11:B2153,"AC",Sheet1!C11:C2153)

Regards,
Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top