简体   繁体   中英

Excel - i need first non-blank value of a column

This is my Column. I need the 2.46 in cell b1 how do i do that?

A1 ---- BLANK
A2 ---- BLANK
A3 ---- BLANK
A4 ---- 2.46
A5 ---- BLANK
A6 ---- BLANK
A7 ---- BLANK
A8 ---- BLANK
A9 ---- 2.58
A10 ---- BLANK
A11 ---- BLANK
A12 ---- BLANK

Try this formula

=INDEX(B1:B100,MATCH(TRUE,INDEX(B1:B100<>"",0),0))

extend ranges as required

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM