Jump to content

Replace first word?


Francis P.

This topic is 5266 days old. Please don't post here. Open a new topic instead.

Recommended Posts

What is the reason you need to do this?

How about a hint to what the data looks like.

I could give you a couple of calculations that would do this, but if we knew what you were trying to accomplish and why, we can better fit the answer.

Lee

Link to comment
Share on other sites

  • 2 months later...
  • Newbies

I would use something like this since there may be more than just two words in the string. This would result in "xyz product" for an input of "123 xyz product". Input would obviously be the value you're importing.

Let (

[

Input = "123 xyz product" ;

ReplaceSpaces = Substitute ( Input ; " " ; "¶" ) ;

FirstValue = GetValue ( ReplaceSpaces ; 1 ) ;

Output = Substitute ( Input ; FirstValue ; "" )

] ;

Trim ( Output )

)

Link to comment
Share on other sites

This topic is 5266 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.