First Time Asn : If you have a NAME, its easy.I po
You can create Excel names that refer to cells, a range of cells, a constant value, or a formula.1
1.Name categories you want to calculate.
2.Use name in formula.
==================================================================================
Second Time Asn : If you can't edit that workbook.I still thinking about direct link and po
The INDIRECT function returns a reference to a range. You can use this function to create a reference that won't change if row or columns are inserted in the worksheet. Or, use it to create a reference from letters and numbers in other cells.2
Spain BALANCE:
Set A1 as ''C:\Users\TMuser\Desktop[WORKBOOK1.xlsx]Sheet1'!D10
indirect(A1);
'WORKBOOK1.xlsx must open
OR
='C:\Users\TMuser\Desktop\WorkBookSrc.xlsx'!D10
'WORKBOOK1.xlsx Not necessarily open
==================================================================================
Third Time Asn : found INDEX + SUMPRODUCT + ROW + COLUMN SOLVED.
I realize this question, try another way to solve this
INDEX + MATCH
1.Use MATCH get row and column num
2.Use INDEX get context of that row and col of an area(OFFSET only get context of that row and col)
1.first search the workbook for SPAIN
2.return the value that is 3 columns to the right and 8 rows below
My Asn:
=INDEX((workbook1.xlsx!Spain,workbook1.xlsx!Canada),8,3,1 or 2)