for INDIRECT function formula in detail
=INDEX('TAB1'!C4:BC4,MATCH(-BM7,'TAB1'!C64:BC64,0))
But what i want is "C64:BC64" to be dynamic > for row no. meaning "B" and "BC" is fixed but the ROW no is variable which i use match function to fix it
if i use match function it become as ref error
=INDEX('TAB1'!C4:BC4,MATCH(-BM7,INDIRECT("'"&A7&"'!C"&MATCH(C7,INDIRECT("'"&A7&"'!C4:C200"),0)&":BC"&MATCH(C7,INDIRECT("'"&A7&"'!C4:C200"),0),0)))
result is #REF
solo indirect
=INDIRECT("'"&A7&"'!C"&BF2&":C"&BF2,0) result ok
=INDIRECT("'"&A7&"'!C"&BF2&":BC"&BF2,0) result #REF
things pointing to same cell has no issue . when column range more than 1 it show error
need assistance for this