0
I have a final result set from 5 Workbook Queries in Excel. One of the columns in this query has empty cells since during a query merge there were no matching values to fill.
Now I'd like to create a multiple IF function that will read the adjacent columns values and try to figure out the right value to fill in the blank ones.
OEM No Manufacturer
3855860141 Mercedes-Benz
310807 Sachs
6704210112
9062411113
0009970653
2213201738
9063262681
3954100622
6113240350
6113240450
So for example in the Manufacturer column if we had the first blank cell to be b4 I'd like to fill the values with a function such as
IF( len(A4) = 10 , "Mercedes",
IF( len(A4) = 11 , "MAN",
IF(LEFT(A4,2) = "81"), "Behr"))
Two things I'd like to do with this.
Fill the columns and recursively update the tables where the queries derived from.
Keep the changes.