separate the data

DaRTHY

Registered User.
Local time
Today, 09:57
Joined
Mar 6, 2015
Messages
90
Hello Friends,

In same field Im saving every time 6 digits data and i need to separate them. (It was not my fault. They created DB like this... :banghead:)

For example my data is

123412(main-field) and i want to see them 1234(field1) 12(field2)

hope so u can help to me. Ty for your helps
 
Last edited:
try

left(myfield,4) and right(myfield,2)

if you need the numerical values

val(left(myfield,4)) and val(right(myfield,2))
 
Ty mate its working
in Internet i found
" FirstName: Left([FullName],Instr([FullName]," ")-1) " this code and i tried to modify but did not work.
But yours is working !!
 

Users who are viewing this thread

Back
Top Bottom