Forum Discussion

BORMAC's avatar
BORMAC
Copper Contributor
May 07, 2024
Solved

Sorting with matching

I need to match the 2 ranges to each other. Find the cells on the right in the range on the left and put them in the right row. This is best shown in the image:
  • djclements's avatar
    djclements
    May 08, 2024

    BORMAC As a variant, without using LAMBDA helper functions:

     

    =LET(
        rowId, XMATCH(B1:B10, E1:E5),
        HSTACK(
            EXPAND(A1:B10,, 3, ""),
            IF(ISNUMBER(rowId), INDEX(D1:E5, rowId, {1,2}), "")
        )
    )

     

    Please see the attached workbook to convert the functions to your language settings...

Resources