简体   繁体   中英

Formula excel find data from first character in cell

Using Excel formula, how do i find data from first character in a cell

For example: i find data where first character "J"

Jhon
James
Smith

results :

Jhon 
James

Use AutoFilter with the Begins with... Option

Starting with:

在此处输入图片说明

and then applying the filter will result in:

在此处输入图片说明

Use:

=IFERROR(INDEX(A:A,AGGREGATE(15,6,ROW($A$1:$A$3)/(LEFT($A$1:$A$3)="J"),ROW(1:1))),"")

Put in first cell and copy down.

在此处输入图片说明

首先,您必须从字符中搜索J,然后显示数据

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