R rupal1234 Member Nov 30, 2018 #1 Hi, I want data like i if open sheet maths then it shows data of maths which is in sheet 1 like A4:F4 Attachments REENA30-11.xlsx REENA30-11.xlsx 11 KB · Views: 1
Hi, I want data like i if open sheet maths then it shows data of maths which is in sheet 1 like A4:F4
B bosco_yip Excel Ninja Nov 30, 2018 #2 Try, In "Maths" sheet B2, copied across to G2 : =INDEX(Sheet1!A$1:A$100,MATCH(MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32),Sheet1!$C$1:$C$100,0)) Regards Bosco Attachments REENA30-11(1).xlsx REENA30-11(1).xlsx 12.9 KB · Views: 2
Try, In "Maths" sheet B2, copied across to G2 : =INDEX(Sheet1!A$1:A$100,MATCH(MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32),Sheet1!$C$1:$C$100,0)) Regards Bosco
R rupal1234 Member Nov 30, 2018 #3 Th bosco_yip said: Try, In "Maths" sheet B2, copied across to G2 : =INDEX(Sheet1!A$1:A$100,MATCH(MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32),Sheet1!$C$1:$C$100,0)) Regards Bosco Click to expand... Thankyou so much but i want all maths data like maths is coming in C4 and C7 in sheet maths Attachments REENA30-11(1).xlsx REENA30-11(1).xlsx 12.4 KB · Views: 3
Th bosco_yip said: Try, In "Maths" sheet B2, copied across to G2 : =INDEX(Sheet1!A$1:A$100,MATCH(MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32),Sheet1!$C$1:$C$100,0)) Regards Bosco Click to expand... Thankyou so much but i want all maths data like maths is coming in C4 and C7 in sheet maths
B bosco_yip Excel Ninja Nov 30, 2018 #4 rupal1234 said: Th Thankyou so much but i want all maths data like maths is coming in C4 and C7 in sheet maths Click to expand... Then, In " Maths" sheet B2, revised formula copied across to G2 and all down : =IFERROR(INDEX(Sheet1!A:A,AGGREGATE(15,6,ROW(Sheet1!A$1:A$100)/(Sheet1!$C$1:$C$100=MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32)),ROWS($1:1))),"") And, select B2:G4, copy and paste to other course sheets Regards Bosco Attachments REENA30-11(2).xlsx REENA30-11(2).xlsx 14.7 KB · Views: 4 Last edited: Nov 30, 2018
rupal1234 said: Th Thankyou so much but i want all maths data like maths is coming in C4 and C7 in sheet maths Click to expand... Then, In " Maths" sheet B2, revised formula copied across to G2 and all down : =IFERROR(INDEX(Sheet1!A:A,AGGREGATE(15,6,ROW(Sheet1!A$1:A$100)/(Sheet1!$C$1:$C$100=MID(CELL("filename",$A1),FIND("]",CELL("filename",$A1))+1,32)),ROWS($1:1))),"") And, select B2:G4, copy and paste to other course sheets Regards Bosco