Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi
i have two kinds of input format like:
F16071/0000000241
FF16071/000000014124A20
second one has double F at begining.
And i want only 10 characters after '/'
for these inputs i want 0000000241 as output
thanks
As per your other post that is the same as this one...
If that is definitely the rule you want to apply then:
LEFT(TEXT(SubField(YourField,'/',2)),10)
or
TEXT(MID(YourField,Index(YourField,'/'),10))
Jason
As per your other post that is the same as this one...
If that is definitely the rule you want to apply then:
LEFT(TEXT(SubField(YourField,'/',2)),10)
or
TEXT(MID(YourField,Index(YourField,'/'),10))
Jason
thank you very much