I use the SPLIT function to split a string which looks something like 1.23/1.15
.
Right now it yields two cells, as it should. But how do I get a certain element from the result? I would like to do something like this:
SPLIT("1.23/1.15", "/")[0]
to extract 1.23
. What is the correct syntax for that?
I tried using the INDEX
function, without success: =INDEX(SPLIT("1.23/1.15", "/"), 0,0)