Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have an address field and I would like to create a formula to retrieve the
first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This formula should work, provided there is always at least four words in the
cell: =LEFT(A2,FIND(" ",A2,FIND(" ",A2,FIND(" ",A2)+1)+1)-1) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "KrispyData" wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
in
B1 1245 main street suite 10 in A1 =LEFT(B1,FIND(" ",B1,1+FIND(" ",B1,1+FIND(" ",B1,1)))) KrispyData wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
There are at least 3 words in each cell?
"Luke M" wrote: This formula should work, provided there is always at least four words in the cell: =LEFT(A2,FIND(" ",A2,FIND(" ",A2,FIND(" ",A2)+1)+1)-1) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "KrispyData" wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try the below formula
=LEFT(SUBSTITUTE(A1 & " "," ",REPT(" ",255),3),255) If this post helps click Yes --------------- Jacob Skaria "KrispyData" wrote: There are at least 3 words in each cell? "Luke M" wrote: This formula should work, provided there is always at least four words in the cell: =LEFT(A2,FIND(" ",A2,FIND(" ",A2,FIND(" ",A2)+1)+1)-1) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "KrispyData" wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Perfect!
Thank you, Jacob! "Jacob Skaria" wrote: Try the below formula =LEFT(SUBSTITUTE(A1 & " "," ",REPT(" ",255),3),255) If this post helps click Yes --------------- Jacob Skaria "KrispyData" wrote: There are at least 3 words in each cell? "Luke M" wrote: This formula should work, provided there is always at least four words in the cell: =LEFT(A2,FIND(" ",A2,FIND(" ",A2,FIND(" ",A2)+1)+1)-1) -- Best Regards, Luke M *Remember to click "yes" if this post helped you!* "KrispyData" wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Tue, 27 Oct 2009 09:46:01 -0700, KrispyData
wrote: I have an address field and I would like to create a formula to retrieve the first 3 words in the address. How can I do this? example: 1245 main street suite 10 i would like the result to be: 1245 main street thanks so much for any help! =LEFT(TRIM(A1),FIND(CHAR(1),SUBSTITUTE(TRIM(A1)&" "," ",CHAR(1),3))-1) --ron |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Retrieve cell value | Excel Discussion (Misc queries) | |||
Retrieve cell value basis the inputs into a diff cell // sk. | Excel Worksheet Functions | |||
Help - retrieve cell address | Excel Discussion (Misc queries) | |||
How do I dynamically retrieve the cell address of the last cell t. | Excel Discussion (Misc queries) | |||
Retrieve last cell with data | Excel Worksheet Functions |