crystal reports xi - Excel formula to use numbers and first space as delimiter -


i have written crystal report user exports report "microsoft excel (97-2003) data-only" file. 1 of columns address in following format:

123 main street

456 s 3rd st

789 n w lane

there series of numbers followed single space , rest of address. there excel formula can write against column remove first numbers , first space - can end following, in case:

main street

s 3rd st

n w lane

edit - why downvote?

there more handful of ways want. 1 way find location of first space, take of characters right of it. instance:

=right(a1,len(a1)-find(" ",a1)) 

worked on sample data. depending on quality of data, may quite brittle , should wrap in error checking formulas appropriate.


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -