Forum Discussion
ds100
Jul 11, 2022Copper Contributor
How to Filter dynamic array with table field-to-dynamic array criteria?
Is there a way - with the Filter function or an alternative - to replicate below function but allowing for $G3# to replace $G3? FILTER(Table2[Date],(Table2[Symbol]=$G3) Thanks
SergeiBaklan
Jul 12, 2022MVP
Practically the same
=LET(
u, UNIQUE(Table2[Symbol]),
IF( {1,0}, u,
MAP( u, LAMBDA(v, TEXTJOIN(",", 1, TEXT( FILTER(Table2[Date], Table2[Symbol] = v), "m/d" ) ) ) ) ) )
ds100
Aug 02, 2022Copper Contributor
Map function came in handy for something else. Thanks again