I'm sure someone else must have run into this issue before me, but so far I can't find the answer.
So here's my problem. I've got an array formula that includes a reference to a table:
If I put this in cell A1, use SHIFT+CTRL+ENTER, then drag it across B1, C1, etc, I'd like the reference in B1 to become [Column11], in C1 to be [Column12], and so on. Instead, it stays [Column10], ie, an absolute reference.
This seems to be an array formula issue. If I just hit ENTER instead of SHIFT+CTRL+ENTER, then the reference is relative and I get [Column 11] etc. But that's not much use to me since this needs to be an array formula.
I've found resources like https://www.excelcampus.com/tips/absolute-formula-references-excel-structured-table/ but it doesn't seem to address my issue, because it discusses relative/absolute references to tables in 'standard' (non-array) formulas only.
So here's my problem. I've got an array formula that includes a reference to a table:
Code:
=SUM(IF(MyTable[[#All],[Column72]:[Column72]]=Sheet2!$A2,MyTable[[#All],[Column10]]))
This seems to be an array formula issue. If I just hit ENTER instead of SHIFT+CTRL+ENTER, then the reference is relative and I get [Column 11] etc. But that's not much use to me since this needs to be an array formula.
I've found resources like https://www.excelcampus.com/tips/absolute-formula-references-excel-structured-table/ but it doesn't seem to address my issue, because it discusses relative/absolute references to tables in 'standard' (non-array) formulas only.