I have a workbook with multiple sheets that I am trying to transpose information in between sheets.
I am using an =IF formula to identify instances in which there is a data match in Sheet1 and to pull information from the header of the corresponding column into Sheet2.
Before anyone mentions, I've tried this using the VLOOKUP function which unfortunately only works on numerical data (my set is alphabetical).
Unfortunately the formula I am using only seems to be working sporadically - although in the instances in which it does work, it works perfectly and as intended. In all other instances it returns either a #VALUE! error or fails to recognise the logic function as true.
=IF(Sheet1!$B$3:$B$46=Sheet2!B$1, Sheet1!$C$2:$AB$2, "-")
The live version of the formula is linked here (Google Docs).
How can I make the formula work for all cells? Would greatly appreciate any and all help, thank you!
=VLOOKUP(Sheet2!B$1,Sheet1!$B$3:C$46,2,FALSE)
will return the value in C where B matches. – Scott Craner=FILTER(Sheet1!$C$2:$AB$2,Sheet1!$B$3:$B$46=Sheet2!B$1)
– Scott Craner