I have a scenario where I have an inventory tracking sheet that has service tag IDs in one column, employee names in another column, and then identification of device type in a third column (i.e. laptop, monitor, dock, etc.). Each row is unique to an asset, and therefor a given employee may appear in multiple rows (as they've been assigned multiple pieces of equipment.
I want to create a new sheet that flips the data so that each row is an employee, and the service tag IDs appear in a column for each type of device (column each for laptop vs monitor vs dock) as this will allow us to send them a single update request to confirm receipt of said equipment. I've tried with both an IF/Vlookup combo and a IF/Index combo and can't get either to work. Any thoughts? Here are my two attempts
=IF({Device Type} = "Laptop/Desktop", VLOOKUP([Allocated To]@row, {Service Tag}, 5, false), "")
=IF({Device Type} = "Laptop/Desktop"),INDEX({Serial #/ST}, MATCH([Allocated To]@row, {Allocated To}, 0), "")
In both examples, {Device Type} is a reference to the Device Type column in the master sheet, Serial #/ST and Service Tag are actually the same...I just screwed up and named them differently, it is also a reference field to my master sheet. Allocated To appears in both the Master and the new sheet, as that's the "key" I'm trying to use to create the new format of data.