I have a series of named ranges which denote Mondays in each year. Each begins with the letter d and follows this format: d01.06.13, d01.13.13, d01.20.13, etc.
I have another series of named ranges which denote physical locations: Room100, Room200, etc.
I have a series of columns where the top row in each contains the dates of each Monday: 01.06.13, 01.13.13, etc and rows which begin with the names of the physical locations. )Please ignore the periods below, had trouble getting my example formatted to display legibly.)
01.06.13..... 01.13.13 .....01.20.13Room 100 .....81% ............65% ...........78%
Room 200 .....62% ............75% ...........80%
I use the following formula (solution found on this awesome website) to return the values at the intersections of my named ranges. For example:
=(INDEX(d01.13.13,ROW(Room100),)) --> returns 65%; works perfectly, but I have to manually enter the named ranges in my formulas.
I would like to be able to use the value of the cell at the top of each column in the named range to dynamically populate the name of the range in my formula. I also need to add the letter "d" to the beginning of the name range reference I cant figure out the correct sytax, but it would be something like this:
=(INDEX("d"&C1,ROW(Room100),)) I am trying to stick the letter d combined with the value of the cell at the top of each column in place of manually typing the name of the range, which in this case is d01.13.13
Any ideas?? Many thanks!
I have another series of named ranges which denote physical locations: Room100, Room200, etc.
I have a series of columns where the top row in each contains the dates of each Monday: 01.06.13, 01.13.13, etc and rows which begin with the names of the physical locations. )Please ignore the periods below, had trouble getting my example formatted to display legibly.)
01.06.13..... 01.13.13 .....01.20.13
Room 200 .....62% ............75% ...........80%
I use the following formula (solution found on this awesome website) to return the values at the intersections of my named ranges. For example:
=(INDEX(d01.13.13,ROW(Room100),)) --> returns 65%; works perfectly, but I have to manually enter the named ranges in my formulas.
I would like to be able to use the value of the cell at the top of each column in the named range to dynamically populate the name of the range in my formula. I also need to add the letter "d" to the beginning of the name range reference I cant figure out the correct sytax, but it would be something like this:
=(INDEX("d"&C1,ROW(Room100),)) I am trying to stick the letter d combined with the value of the cell at the top of each column in place of manually typing the name of the range, which in this case is d01.13.13
Any ideas?? Many thanks!