fawzy_i_05
27th October 2013, 01:33
I have a field in a customized session i want to split the data in this field into 2 others fields the first 4 digits into the first field and the form digit number 5 to digit no 10 into another field
is any way to do this
thanks in advance
bhushanchanda
27th October 2013, 03:52
Hi,
Yes. It can be done.
Declare two string variables say a & b of.
a = str$(field_name(1;4))
b = str$(field_name(5;5))
Now, a and b will have the splitted data as string. To convert then again into numbers declare 2 variables with original field domain say x & y.
then,
x = val(a)
y = val(b)
fawzy_i_05
27th October 2013, 20:10
Thx bhushanchanda
the way to make this is create a library (DAL, DAL2 ) or form editor