Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi community,
I have a field made of two numbers seperated by a "-". How would I parse it so that only the number before the dash is saved?
Hi,
Use SubField()
SubField(FieldName,'-',1)
Celambarasan
Hi Brandon,
use subfield function at load time.
subfield(FieldName,'-',1) as NewField,
Now this new Field contains the numbers before the dash.
Regards,
Nilesh Gangurde