Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I reference a cell range from one worksheet to another using excel formulas?

Tags:

excel

I have a single worksheet with sheets Sheet1 and Sheet2 and I am trying to reference a range of cells from Sheet2 to Sheet1

I know how to reference worksheet cells such as =Sheet2!A1 but how can I do the same for a cell range such as A1:F1 I tried =Sheet2!A1:F1 but it does not like the syntax.

I need to use Excel Formulas for this if possible.

like image 261
Ninja2k Avatar asked Dec 21 '12 16:12

Ninja2k


1 Answers

Simple ---

I have created a Sheet 2 with 4 cells and Sheet 1 with a single Cell with a Formula:

=SUM(Sheet2!B3:E3)

Note, trying as you stated, it does not make sense to assign a Single Cell a value from a range. Send it to a Formula that uses a range to do something with it.

like image 143
Krazick Avatar answered Nov 15 '22 19:11

Krazick