Hello,
I have several Named Tables set up which sort information from other tables into various sorts. I am refencing a specific column from these tables in an array formula which I am using to create a drop down list... for some reason my formula isn't working right... When I use Offset with regular range references it works fine, but when I use the structured references my formula breaks down. Any ideas? Here are the two formulas
WORKING FORMULA:
BROKEN FORMULA:
USING: EXCEL 2007
I have several Named Tables set up which sort information from other tables into various sorts. I am refencing a specific column from these tables in an array formula which I am using to create a drop down list... for some reason my formula isn't working right... When I use Offset with regular range references it works fine, but when I use the structured references my formula breaks down. Any ideas? Here are the two formulas
WORKING FORMULA:
Code:
=OFFSET(COMMON!A2:A500,1,0,COUNTIF(COMMON!$A1:$A500,"<>0"))
BROKEN FORMULA:
Code:
=OFFSET(Table750[DESCRIPTION],1,0,COUNTIF(COMMON!$A1:$A500,"<>0"))
USING: EXCEL 2007