I am attempting to build a string of formulas in order to collect and format combine two data fields. However this is only on the basis of conditions within the spreadsheet.
I have a multi sheet workbook with a lot of different and relevant information as it pertains to my work. Generally I want to combine two fields but only if they meet specific conditions in other columns within the spreadsheet.
Rank Full Name (last, first, MI) location driver/a-driver
I want to search the entirety of information and seek out the rank and name of specific individuals based on their location and whether they are a driver or a-driver. Likewise I want the cell that I want this data in it to begin with DRIVER: or A-DRIVER: based on the information contained in that column. I am not sure if I am doing this right so far but this is what I have come up with at this time. Any help with correcting the returning answers as "#value" would be greatly appreciated.
=IF(VLOOKUP("TAP ACT",Table2,18,TAP!R3:R105)&VLOOKUP("AD",Table2[DRIVER/A-DRIVER],19,TAP!S3:S105),CONCATENATE("DRIVER: ",Table2[[RANK]:[NAME]])," ") returns "#VALUE!
I have also attempted INDEX and MATCH formulas with no success. To date I have yet to return an answer except when I use on formula by itself.
Any help is greatly appreciated.
Joshua
I have also attempted
=if(Table2[DRIVER/A-DRIVER]="D","DRIVER: ","")& AND(Table2[LOCATION]="TAP ACT"),INDEX(CONCATENATE("DRIVER: ",Table2[[RANK]:[NAME]]),TAP!3:105,TAP!F:G))
I have now also attempted to use
=IF(AND(Table2[LOCATION]="TAP ACT",NOT(ISBLANK(Table2[DRIVER/A-DRIVER]="D"))),CONCATENATE(Table2[RANK]," ",Table2[NAME]),"")
which also returned the error #VALUE!
Bookmarks