Hello
I have a worksheet that uses MS Query to get at the data from a worksheet in the same workbook.
I want to reference one of the columns from the query and compare it to:
But these absolute references are causing issues when someone else opens the worksheet (they get an ODBC error message indicating an invalid path name).
This wasn't an issue in the 2003 version....is there something I can do to work around? Thanks.
I have a worksheet that uses MS Query to get at the data from a worksheet in the same workbook.
I want to reference one of the columns from the query and compare it to:
Code:
=IF(AND(MONTH([@[''Date Assessment Completed'']])=MONTH(Table_ReferAssess_1[[#Headers],[4/01/12]]), YEAR([@[''Date Assessment Completed'']])=YEAR(Table_ReferAssess_1[[#Headers],[4/01/12]])),DATEDIF([@[''Referral Received Date'']],[@[''Date Assessment Completed'']],"d"),0)
But these absolute references are causing issues when someone else opens the worksheet (they get an ODBC error message indicating an invalid path name).
This wasn't an issue in the 2003 version....is there something I can do to work around? Thanks.