Hi all,
I'm working with quite a large spreadsheet - by my standards -, (~50MB) it has 12 tabs all with various sources of data in them, and one main tab which has original data and I am trying to bring all of the data together on and run comparisons between the sources.
I'm by no means an Excel guru but I've had a look on the Internet and all I have managed to find so far is that turning off automatic calculations speeds things up, but there is still the inevitable 10 - 15 minute wait for Excel to perform calculations.
Two typical formulae from the spreadsheet are as follows:
This one to see if a value exists in a data source, if so put an "a" in the box and after format as Marlett font type to get a tick:
=IF(ISNA(VLOOKUP(B2,Data_Source!$A$1:$A$100000,1,FALSE)),"","a")
This one is to see if a value in the original data source is present in another one, and if so, what information is there:
=IF(ISNA(VLOOKUP(B2,Data_Source!$A$1:$B$100000,2,FALSE)),"",VLOOKUP(B2,Data_Source!$A$1:$B$100000,2,FALSE))
I understand that these could be made a bit simpler but I would ideally like to incorporate something to prevent #N/A coming up in any blank cells and they are returning exactly what I need.
I've been looking at possibly using a different formula to do the same thing and make the spreadsheet faster, and if possible a bit smaller. I've come across the INDEX-MATCH command, but I am having difficulty in figuring out how that command would produce the same results as I have been getting with VLOOKUP.
Does anyone have any ideas on this please? Any help would be greatly appreciated!!
Thanks
Bookmarks