Barhomopolis
New Member
- Joined
- Jan 10, 2012
- Messages
- 21
Greetings Everybody
I have a workbook in wich I consolidate 65,535 rows of data from 6 other workbooks using compound lookup. I lookup (using INDEX & MATCH) based on a double criteria. That's not the issue.
The issue is that I need to grab not only the values of the matching cells, but also their colours. I need to it the simplest way possible for the sheet is huge and the lookup function is already too complex.
The lookup formula I'm currently using (nested six times for the six files in a nested IFERROR) looks like this:
=IFERROR(INDEX('Z:\1.xlsx'!Table1;MATCH([@
I have a workbook in wich I consolidate 65,535 rows of data from 6 other workbooks using compound lookup. I lookup (using INDEX & MATCH) based on a double criteria. That's not the issue.
The issue is that I need to grab not only the values of the matching cells, but also their colours. I need to it the simplest way possible for the sheet is huge and the lookup function is already too complex.
The lookup formula I'm currently using (nested six times for the six files in a nested IFERROR) looks like this:
=IFERROR(INDEX('Z:\1.xlsx'!Table1;MATCH([@
Code:
]&[@Loc];'Z:\1.xlsx'!Table1[Code]&'Z:\1.xlsx'!Table1[Loc];0);4);INDEX('Z:\2.xlsx'!Table2;..........And so on six times for six files.
This copies the value of the cell with certain Code and Location from workbook 1.xlsx
I want something that copies the value AND the colour of the cell that matches the Code and Location.
I appreciate any help.