Easter Function help..
Posted by Ben Houck on April 15, 2001 10:05 AM
I need help to pull data from the following format:
101 1 EXI 40 470216.57
101 1 EXO 94 -37547.28
101 1 LIQ 3841 -1474567.97
101 1 PUR 944 1434700.36
101 2 EXI 16 46840.7
101 2 EXO 13 -10381.98
101 2 LIQ 14 -32684.9
101 2 PUR 19 19620
I need a function that will verify the first three columns of information and then return the fifth into another spreadsheet. Dave helped me with a If.And.Vlookup but it only vefified them and then returned false after reading the third column.
I need one that will scan all three columns and only return false after reading all the rows within the spreadsheet. I'm sure this sounds confusing so e-mail if you could use some clarfication. Listed below is the if statement I tried before.
=IF(AND(VLOOKUP($B7,'[TranByFund03-01.xls]TranByFund2001'!$B$1:$F$1000,2,FALSE)=1,VLOOKUP($B7,'[TranByFund03-01.xls]TranByFund2001'!$B$1:$F$1000,3,FALSE)="PUR"),VLOOKUP($B7,'[TranByFund03-01.xls]TranByFund2001'!$B$1:$F$1000,5,FALSE),0)
Thanks
Ben