Splitting Address - How to search for multiple criteria in Excel -


i'm trying split address:

123 99th pl se 999 123 99th pl ne 999 123 99th pl sw 999 123 99th pl nw 999 

i need:

123 99th pl se 123 99th pl ne  without number @ end. 

i used:

left(d3,find("se",d3)+1) works.

but possible use multiple criteria find function? looks 1 of se, ne, sw, nw?

i tried left(d3, find({"se","ne","sw","nw"},d3)+1) doesn't work.

you close. problem want find first occurrence , when not found returns error.

use array formula:

=left(d3, min(find({"se","ne","sw","nw"},d3 & "seneswnw"))+1) 

being , array formula needs confirmed ctrl-shift-enter instead of enter when exiting edit mode. if done correctly excel put {} around formula.

enter image description here


Comments

Popular posts from this blog

What is happening when Matlab is starting a "parallel pool"? -

php - Cannot override Laravel Spark authentication with own implementation -

angular - DownloadURL return null in below code -