I have a data set with the following column (txt):
"5
16.
123
234
135
1435
13
64."
I need the output to be:
"5
13"
So basically the rows before the number with the period (.)
I tried using multi row formula with the following:
IIF(CONTAINS([txt],"."), [Row-1:txt] , Null())
But don't seem to get the correct result