Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Sheets: Get First Value in Column

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.

like image 603
maxhugen Avatar asked Oct 17 '25 15:10

maxhugen


1 Answers

Although I'm not sure whether I could correctly understand your expected result, how about the following sample formula?

Sample formula:

=INDEX(FILTER(E4:E188,E4:E188),1)

Testing:

enter image description here

Reference

  • FILTER
like image 139
Tanaike Avatar answered Oct 21 '25 14:10

Tanaike



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!