I need to find the first value in a column range. I've previously had help to find the last value in a column range, such as:
=INDEX(E4:E188, MATCH(999^99, (E4:E188)))
However I haven't figured out how to convert the above formula to return the first value instead. Any suggestions would be appreciated.
Although I'm not sure whether I could correctly understand your expected result, how about the following sample formula?
=INDEX(FILTER(E4:E188,E4:E188),1)