Forum Discussion

NareshTakashi's avatar
NareshTakashi
Copper Contributor
Nov 11, 2020
Solved

Excel Filter Function - Use Same Formula Across Multiple Cells

Hello, I’m looking for some guidance on using the Excel Filter function and making it so it available to use in other cells within the same column. I have the following formula that looks for a val...
  • PeterBartholomew1's avatar
    Nov 11, 2020

    NareshTakashi 

    Conceptually, you appear to be looking to produce an array or arrays which, sadly, Excel does not traditionally support.  As was suggested, the TRANSPOSE function would allow your list of matched country names to spill horizontally, so allowing multiple lists to be stacked vertically.  This would, though, require the formula to be copied down.

    Dressed up, the same formula could be written in the form

    = LET(
      matches, ISNUMBER(SEARCH(@PartialName, Map[Name])),
      matchingNames, FILTER(Map[Name], matches,"Not Found"),
      TRANSPOSE(matchingNames) )

Resources