answersLogoWhite

0


Best Answer

As they are separate ranges they would be:

A3:G5

and

J3:M5

In a formula, such as a Sum, if you wanted to reference both to get an overall total you would have the two range separated by a comma like this:

=SUM(A3:G5,J3:M5)

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the range reference for Excel A3 through G5 and J3 through M5?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is range reference in Excel?

A range is a group of two or more cells that can be referenced as a single block using the top left and bottom right cells. The addresses of the two cells are separated by a colon to form the range reference. So the cell reference A3:A10 refers to all of the cells A3, A4, A5, A6, A7, A8, A9 and A10. The cell reference C12:E14 refers to cells C12, D12, E12, C13, D13, E13, C14, D14 and E14. A range reference is always used in a function, like in the examples below: =SUM(A3:A10) =AVERAGE(C12:E14)


An asterisk following a cell reference in a formula is the arithmetic operator that directs Excel to perform the division?

No. An asterisk does multiplication. =A3*B3 A front slash is used for division: =A3/B3


Why would you add a plus sign when doing a cell reference in Excel?

A plus sign is the symbol that represents addition. If you put A1 + A2 in cell A3, you will see the result of the addition of the contents of A1 and A2 in cell A3.


When typing formulas in Excel to reference the location of a cell what do you do?

Simply type in the cell like: =A3+C6 You can also click on a cell as you are typing the formula and it will be included in the formula.


How do you print a row and column headings on excel window?

to get column number, we can use =COLUMN(Reference) to get Row number, we can use =ROW(Reference) For example =COLUMN(A1) will return 1 and =ROW(A3) will return 3


When should you make a reference cell absolute?

By default, in a spreadsheet like Excel, if you have a reference to a cell, like A1, when you copy the formula down (for example, the A1 is changed to A2, A3, etc. An absolute reference is one where the cell reference does not change when a formula is copied. In Excel, this is indicated by dollar signs. For example, $A$1 means that neither the "A" nor the "1" will change, when the formula is copied.By default, in a spreadsheet like Excel, if you have a reference to a cell, like A1, when you copy the formula down (for example, the A1 is changed to A2, A3, etc. An absolute reference is one where the cell reference does not change when a formula is copied. In Excel, this is indicated by dollar signs. For example, $A$1 means that neither the "A" nor the "1" will change, when the formula is copied.By default, in a spreadsheet like Excel, if you have a reference to a cell, like A1, when you copy the formula down (for example, the A1 is changed to A2, A3, etc. An absolute reference is one where the cell reference does not change when a formula is copied. In Excel, this is indicated by dollar signs. For example, $A$1 means that neither the "A" nor the "1" will change, when the formula is copied.By default, in a spreadsheet like Excel, if you have a reference to a cell, like A1, when you copy the formula down (for example, the A1 is changed to A2, A3, etc. An absolute reference is one where the cell reference does not change when a formula is copied. In Excel, this is indicated by dollar signs. For example, $A$1 means that neither the "A" nor the "1" will change, when the formula is copied.


What example makes use of a range in Excel?

A range lets you refer to a group of cells easily, by referring to the top left and bottom right of a rectangular groups of cells. Without a range you could add all the cells from A2 to A0 like this:=A2+A3+A4+A5+A6+A7+A8+A9+A10Using a range reference you could do it like this:=SUM(A2:A10)


How do you lock a cell within a formula in Excel?

If you mean have it so that if the formula is copied, that the cell reference won't change, then you use an absolute reference. To do that put a dollar before the column reference and one before the row reference. As an example A3 would be $A$3 when locked. A quick way as you type the cell reference is to press the F4 key to change the reference type.


What is a three dimensional cell reference in Excel?

A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3A 3D cell reference includes the row, column and also the sheet. So cell A3 on Sheet2 has a cell reference, as follows with the sheetname followed by an exclamation mark:=Sheet2!A3


What separates a workseet reference from a cell reference?

An exclamation mark. If you are on Sheet1 and you are referencing the cell A3 on Sheet2 it would be done in the following way: =Sheet2!A3


How do I populate cells in one Excel worksheet into another based on conditional data?

You just need to be able to reference the other sheet, which you do with the sheet name, an exclamation mark and a cell reference. So in a cell on Sheet2, you could have a formula referencing cell A3 on Sheet1 that could be something like: =IF(Sheet1!A3>50, "Over 50","50 or Less")


What sign is used for addition in Excel?

The plus sign. + To add values in the cells A3 and B3 you would do the following: =A3+B3