Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() hi, i have a spreadsheet that is set up like a matrix, names on the left, different metrics along the top. example: Code: -------------------- f and g are different functions with the name as argument (e.g., a lookup function) name metric1 metric2 aaa f(aaa) g(aaa) bbb f(bbb) g(bbb) ccc f(ccc) g(ccc) ddd f(ddd) g(ddd) -------------------- now, i have the name column set up as a named range. i can write something like: Code: -------------------- Range("name").Offset(0, 1).Value = "=f(a1)" -------------------- in other words, explicitly write the function into the cell relative to the named range, but this is inefficient when i have 60 or so columns to fill out. is there an easy way to do this? i'm trying to avoid copy/paste because it's slow. i cannot keep the formulas in there because there are hundreds of lines per sheet, and it needs to be clean (i.e. exactly as long as the named range) for the task at hand. thanks. -- dreamz ------------------------------------------------------------------------ dreamz's Profile: http://www.excelforum.com/member.php...o&userid=26462 View this thread: http://www.excelforum.com/showthread...hreadid=533040 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formulas an easy explanation | New Users to Excel | |||
Some formulas don't track copies, pastes, fill right, fill down | Excel Discussion (Misc queries) | |||
Fill down formulas in cells to the LEFT of external data range? | Excel Worksheet Functions | |||
Should be easy...Auto Date Fill | Excel Discussion (Misc queries) | |||
Easy way to edit Name Range formulas | Excel Programming |