Forum Discussion

Harun24HR's avatar
Harun24HR
Bronze Contributor
Oct 10, 2025
Solved

How to filter visible cells by formula after applying filter to a dataset.

I have a dataset from A1:B11 (in real case many more). I apply a filter on dataset, for example filter data for Retailer1 and Retailer3. I want on a separate sheet to filter these visible cells using...
  • SergeiBaklan's avatar
    Oct 10, 2025

    Or with exactly same idea

    = LAMBDA(range,
        LET(
            IsVisible, LAMBDA(v, AGGREGATE(3,5,v)),
            FILTER( range, TAKE( MAP(range, IsVisible ),,1) )
    ) )

Resources