This may be two questions in one, as match index may be a better solution but right now I only know how to use VLOOKUP.
I have two sheets pulling data from other sheets, one tracks number of routes run as Lead or Second for a particular route; the other tracks the patroller QUAL for each route ' L, S, T, -,'
I would like to combine the results of Route Counts (3L - 1S) and Quals ( L ) into one row, ' 4 - 2 L ' with the intent of conditional formatting so that route builders can see a name/route/color to determine the position when building teams.
=VLOOKUP(Patroller@row, {RouteCounts}, 4, false) Sheet 1, the highlighted cell is [Patroller]
=VLOOKUP(Patroller@row, {RouteQuals},2, false) Sheet 2, the highlighted cell is [Patroller]
both work independent, but I cant combine? I do need to add a "/" or " " in between the formulas
Essentially I would like to produce one sheet that shows the count with the qual.
The above sheets are still under construction