Forum Discussion
Harun24HR
Oct 10, 2025Bronze Contributor
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...
- 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) ) ) )
Riny_van_Eekelen
Oct 10, 2025Platinum Contributor
Alternatively, without OFFSET:
=LAMBDA(tbl,
LET(
arr, tbl,
viz, BYROW(
INDEX(arr, , 1),
LAMBDA(r, SUBTOTAL(103, r))
),
flt, FILTER(arr, viz),
flt
)
)
Harun24HR
Oct 10, 2025Bronze Contributor
Fantastic! This seems better than earlier.