Need some help with a formula and I'm going to try to formulate what I'm trying to achieve and write down the logic below in steps:
1) Take value in TABLE 1 and Lookup for matching value in TABLE 2
2) If value is found then go 5 fields across (to the right) and bring back the value (value are either "blank", "Yes" or "No")
3) When value is blank record in the field as " ", when value is "No" record it as "N", when value is "Yes" go 2 cells over and bring back the value in the cell.
so far I have the formula covering steps 1 and 2, but struggling to get step 3, here's the formula below:
=IF(ISBLANK(VLOOKUP(D2,'QA Sheet'!$A$2:$AM$339,5,FALSE))," ",VLOOKUP(D2,'QA Sheet'!$A$2:$AM$339,5,FALSE))
TABLE 1 - is where the output goes
TABLE 2 - contains all of the data
1) Take value in TABLE 1 and Lookup for matching value in TABLE 2
2) If value is found then go 5 fields across (to the right) and bring back the value (value are either "blank", "Yes" or "No")
3) When value is blank record in the field as " ", when value is "No" record it as "N", when value is "Yes" go 2 cells over and bring back the value in the cell.
so far I have the formula covering steps 1 and 2, but struggling to get step 3, here's the formula below:
=IF(ISBLANK(VLOOKUP(D2,'QA Sheet'!$A$2:$AM$339,5,FALSE))," ",VLOOKUP(D2,'QA Sheet'!$A$2:$AM$339,5,FALSE))
TABLE 1 - is where the output goes
TABLE 2 - contains all of the data