Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi all
I have a spreadsheet with a named range called Grid89_DropMetric, and Grid89_WidthMetric, Grid127_DropMetric and Grid127_DropMetric I have a dropdown that select either 89 or 127 and want to create a cell which builds up the grid an add the cell value and then add ons the dropmetric or widthmetric on the end of it.. so it creates a string name then i want to refer to that cell in other index and match functions as "Range Name" but dont know if it can be done... Trying to avoid vba at the moment .. is there anyway i can get the string and then use it as an applied name for a range thanks |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have a dropdown that select either 89 or 127 and want to create a cell
which builds up the grid an add the cell value and then add ons the dropmetric or widthmetric on the end of it.. so it creates a string name With DV assumed in A1, you could have in B1: ="Grid"&A1&"_DropMetric" then i want to refer to that cell in other index and match functions as "Range Name" but dont know if it can be done... Use INDIRECT to wrap B1 in the expressions, eg something like this: =INDEX(INDIRECT(B1), ...) Or, you could away with B1, and directly point to the DV cell A1: =INDEX(INDIRECT(="Grid"&A1&"_DropMetric"), ...) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Typos, corrected, should read:
Or, you could do away with B1, and directly point to the DV cell A1: =INDEX(INDIRECT("Grid"&A1&"_DropMetric"), ...) -- Max Singapore http://savefile.com/projects/236895 xdemechanik --- |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]() max .. many thanks ! |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Welcome
-- Max Singapore http://savefile.com/projects/236895 xdemechanik --- "devo.uk" wrote in message ... max .. many thanks ! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to make a "PrintScreen" on a range and paste it in a doc | Excel Discussion (Misc queries) | |||
Array as a "named range" - formula ok in cells, but error as "named range" | Excel Discussion (Misc queries) | |||
Combining formulas, "and" & "or" to verify content of multiple cel | Excel Discussion (Misc queries) | |||
how can I make an excel cell "mark" or "unmark" when clicked on? | Excel Discussion (Misc queries) | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |