Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

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

Recommended Posts

Posted

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

Posted

Well basically I have a price list with codes. I have an excel file with these codes but it has 1,2,3,4,5... before the code in other words code "x" would be "1 x" on the excel sheet. I need a function to replace the "1" before the x when importing.

Thanks.

  • 2 months later...
  • Newbies
Posted

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 )

)

This topic is 5452 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.