Indirect range "can't be used as a single value"?
Hello!
I'm trying to create a range selection dynamically, and I'm getting stuck on Indirect.
If I use the following formula in a cell, I get as text output what _seems_ like a nice little cell reference:
"Monthly Table::"&ADDRESS(MATCH(A8,Monthly Table::A,matching-method),3,addr-type,addr-style,table)&":"&ADDRESS(MATCH(A8,Monthly Table::A),14)
returns:
Monthly Table::$C$19:$N$19
But, when I fold that first formula into an Indirect function, like so:
INDIRECT("Monthly Table::"&ADDRESS(MATCH(A8,Monthly Table::A,matching-method),3,addr-type,addr-style,table)&":"&ADDRESS(MATCH(A8,Monthly Table::A),14))
I get the following error:
"The Range Monthly Table::C19:N19 can't be used as a single value"
What terribly obvious thing am I most likely missing?
Thank you for any help.