I have a sheet of expenses like this, with a column of numbers, some of which represent Balances and are formatted as "Balance: $"0.00
. In that linked sheet, I16 is an example of a balance.
In a cell the bottom of the shee, I want to find the value in the most recent (i.e. first above) “Balance” call from that column I
. How can I do that in LibreCalc?
MATCH doesn’t support searching backwards, and it doesn’t support searching within the formatted value either. =MATCH("Balance.*", I1:I100, 0)
won’t find that I16 cell, and =FIND("Balance", I16)
also returns #VALUE!
.