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

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -