5

I have string coming in this format WORVS/000017/0005.

I want to split the string on /. I want only 000017 from this string and further I had another column to which it has to be concatenated.

I need a formula for same.

Ajay2707
  • 5,690
  • 6
  • 40
  • 58

2 Answers2

10

Create a formula and add below code.

Split (dbfield,"/")[2]
Siva
  • 9,043
  • 12
  • 40
  • 63
2

Have an eye to this solution, Its Simple, Splitting "Full Name" into First and Last , keeping, Excluding Last name and returning First Name part. Splitting String

Community
  • 1
  • 1
DareDevil
  • 5,249
  • 6
  • 50
  • 88