Team,
I would like to split two types of string from following number.
10141400000231212
Requirement 1 :
First 8 digit.
Requirement 2 :
Last 6 Digit
Current formula.
For first req :
(Last(FirstN(Split(TextInput6.Text, "000"),1)).Result)
For Second req :
With({_dt: Last(FirstN(Split(TextInput6.Text, "000"),2)).Result },
Date(2000 + Value(Right(_dt, 2)), Value(Mid(_dt, 3, 2)), Value(Left(_dt, 2)))
)
Issue i am facing with above code is if suppose 000 is coming in first 8 digit then only first 6 characters are coming.
Example : 101414
Expected : 10141400
same issue happening in last 8 digit also.