I'm setting up a time tracking spreadsheet, is there a possibility to iterate over a split cell?
E.g. an input can be 09:00-17:00 which will output 8 when using =(index(SPLIT(CELL, " - "), 0, 2) - index(SPLIT(CELL, " - "), 0, 1))*24
But I'd also like it to work over multiple time frames such as: 09:00-13:00,14:00-17:00 work on the 1-time frame but also on 10. Which should thus output 7, but I don't want to temporarily save a split result into other cells.
Is this possible?