Reputation: 6636
I know how to make a named range in Excel.
I have a spreadsheet, with various columns going across as parameters, and then finally a formula in the last cell. This is repeated many times in each row, with each row having a different set of data, and the formula updated to reference the correct row index.
However, the formula looks like (three rows worth):
=G2*(10*D2 + 20*E2 + 5*F2)
=G3*(10*D3 + 20*E3 + 5*F3)
=G4*(10*D4 + 20*E4 + 5*F4)
I would like to use named ranges, but I can't find a way to do something like
=Count * (10*var1 + 20*var2 + 5*var3)
where count, var1, var2, and var3 automatically update to be the particular column of the current row. I can create a named range for every cell, but that isn't helpful. I can name range the column, but then I can't find a way to put an offset into the formula.
Also the whole point of this is readability, so if it ends up being some nasty complex formula function call, that probably doesn't help too much.
Upvotes: 8
Views: 57746
Reputation: 1
I'd like to propose a slight variation of the cell reference made by Dror. This will work as well:
Range("MyCol").Rows(12)
Upvotes: -1
Reputation: 71
Simple, at least when using Excel 2010:
Using the example from Alex P:
Attention:
Using named columns this way, you cannot access any other row as the one your formula is in!
At least I'm not aware of the possibility to express something like <ColName>(row+1)...
Upvotes: 7
Reputation: 17475
Adding to Alex P's answer:
Instead of using
=OFFSET(Sheet1!$D$2,0,0,COUNT(Sheet1!$D:$D),1)as the formula for input1, I recommend to use
=Sheet1!$D$2:INDEX(Sheet1!$D:$D,COUNT(Sheet1"$D:$D))
It produces the same result, but it is non-volatile, i.e., only recalculate when a predecessor cell changes. This is much better in a larger model!
Upvotes: 2
Reputation: 3012
Use the Excel feature called named references.
To name a cell or range of cells
You can't use names that conflict with cell names, like k0
.
The named cells can be used if formulas. E.g.,
=pi*radius*radius
Upvotes: 0
Reputation: 1675
You might be able to use the row() function. This returns the current row that you are in. So depending on the layout of the spreadsheet you can use it like this:
=offset(NamedColumn1, row()-1)
The -1 is because you are saying how many rows to move down from row 1 which if you are in row 1 you want to be 0.
Upvotes: 0
Reputation: 12489
Suppose I have the following numbers set up in columns D to F in rows 2 to 4:
D E F G
2 10 15 20
3 1 2 3
4 20 30 40
Now suppose I want the value in column D to be known as input1
, column E to be input2
, and column F to input3
:
In Insert > Name > Define...
input1 RefersTo =OFFSET(Sheet1!$D$2,0,0,COUNT(Sheet1!$D:$D),1)
input2 RefersTo =OFFSET(Sheet1!$E$2,0,0,COUNT(Sheet1!$E:$E),1)
input3 RefersTo =OFFSET(Sheet1!$F$2,0,0,COUNT(Sheet1!$F:$F),1)
Now if I write my formula in column G as follows I should get correct answers:
G2 =(10*input1+20*input2+30*input3) // 1000
G3 =(10*input1+20*input2+30*input3) // 140
G5 =(10*input1+20*input2+30*input3) // 2000
Upvotes: 4
Reputation: 395
I haven't fully reviewed the previous answers, but I think this is closer to what @Jason Coyne the OP was looking for. So, I hope I get a lot of up votes. ;-)
Excel allows your formula to refer to tables and columns by name if you "Format as Table". Here is an article titled Using structured references with Excel tables that goes into detail.
FWIW, it looks like this feature has been available since Excel 2007.
Here is a screenshot of an example:
You should be able to see the formula in E2 is =[@Count] * (10*[@Var1] + 20*[@Var2] + 5*[@Var3])
which is pretty close to what @jason-coyne wanted to type.
I don't like that you are forced to pick a style (or define a new one if you don't see a style you like). The good news is you can reformat the cells all you wish without undoing the "tableness".
It insists on turning on auto-filter. But, auto filter is easy to turn off (see the Filter Button checkbox under the Table Tools Design menu).
It also insists on having non-empty, unique values in the header row (Which kinda makes sense). If you delete a header cell, or insert a column, Excel will invent a new, unique name and stuff it in for you. D'oh!
If you want a column to not have a header, you can enter an apostrophe (') followed by one or more blanks. Remember header values need to be unique, so keep adding blanks if you want more than one column without a header.
If you would like to download the sample workbook in the screenshot, here is a link: https://filebin.ca/3vfaSDn4NLEA/SampleWorkbook.xlsx
Upvotes: 5
Reputation: 5109
I would suggest creating a Table. Select your range A1:H4
, then go to the Tables widget > New > Insert Table with Headers (on Mac). This will mark A2:H4
as body of the table, and A1:H4
as header.
From that, you get:
Count
, Radius
, Density
, Height
=[@Count]*(10*[@Radius] + 20*[@Density] + 5*[@Height])
H2
, Excel will automatically "copy down" this formula to all cells in column H
. So no more accidental inconsistencies in the formulas.H4
) and hit Tab
. Excel adds another row, and also makes sure to "copy down" your formula into the new row.Count
instead of G
for example).I can really recommend the video You Suck at Excel with Joel Spolsky which explains all of that.
Upvotes: 6
Reputation: 13051
If you're using VBA, then you can select the whole column and name it, say MyCol
, in the name box (upper left input box). The in your code you can refer to a cell in the column MyCol
(line 12) using the following code:
Cells(12, Range("MyCol").Column)
Upvotes: 1