I am asking help to compare the gene expression value in different time point experiments, with either Excel or VBA to compare then generate report sheet. Each sheet (time points) contains two columns: Gene ID and Value and the gene ID may not be the same in each sheet (time point: 1H, 4H and 8H.. etc.). In the report sheet (sheet4), I would like to have all Gene ID (column 1) and values of each time points (column 2, column 3, column 4). Thus the final sheet (sheet 4) will include all Gene ID from each of the sheets into the column 1, the expression value of sheet1(value1), sheet2(value2) and sheet3(value3) will be in the column2, column3 and column4 of the sheet4. I use “vlookup” of excel can add the expression value into the sheet4 after comparing/lookup the ID, but I do not know how to add the GeneID together for all sheets.
It will look like:
Sheet1 (1H):
(title) GeneID, Value1
Eco, 2;
Xmo, 4;
Sheet2 (4H):
(title) GeneID, Value2
Eco, 6;
Hmm, 8;
Sheet3 (24H):
(title) GeneID, Value3
Xmo, 10;
Ama,12;
The final sheet4 (summary):
(title) GeneID, Value1, Value2, Value3
Eco, 2, 6, (blank);
Xmo, 4, (blank), 6;
Hmm, (blank), 8, (blank);
Ana, (blank), (blank),12;


.Find()now look for all the values for gene ID in all sheets and output the data in Sheet 4. [4] Here is how you use.FIND()siddharthrout.wordpress.com/2011/07/14/… Give it a try and if you get stuck, post what have you tried and where are you stuck and we will take it from there. - Siddharth Rout