I'm attempting to create a spreadsheet to provide a visual representation of a server rack. I have a server named range with rack# and Rack Unit (RU) location of the server within that rack. The challenge is representing multi-RU servers into RU slots with a VLOOKUP.
In the example sheet (Rack Tab) I depicted an example desired output.
Column B (B2) was my original VLOOKUP, Column D (D2), E was my failed attempt and Column G is what I would like my desired output to look like.
I attempted to use SPLIT/TRANSPOSE combo to split the server description (using "/" delimiter) and TRANSPOSEd the output to 'flatten' the split (Formula below):
=ARRAYFORMULA(TRANSPOSE(ARRAYFORMULA(IF(LEN(B$1)=0,,IFNA(TRANSPOSE(SPLIT(VLOOKUP(RIGHT(B$1,3)&"-"&$A$2:$A,ServerDB,6,0),"/")),"Open")))))
The issue is SPLIT flattens the Description but TRANSPOSE flattens the VLOOKUP and TRANSPOSing again recreates the SPLIT. I'm not stuck on doing it my way so if any has a solution or a creative idea I'm open to suggestions. Thank you for taking the time to look at my problem.