Hello, I have the following data in the column txt
"5
16.
342
234
134
34
13
55."
I need to filter through the data and obtain the following: (so basically every row before the data with the period)
"5
16.
13
55."
I use Multi-row formula and type as an expression:
IIF(CONTAINS([txt],"."), [Row-1:txt] , Null())
But not getting correct results.