D
David
Hello all,
I am importing an excel spreadsheet into an existing table. I have a field
titled "Sequence". Values such as 001, 002, 003 etc... Currently setup as
TEXT field. It doesn't matter to me if it is text or number field, but I
need the leading zeros. I will use this field later in combination with some
other fields to create a unique key in another table.
Question is, I am trying to validate this value is between 001 and 999 when
I import. This doesn't work too well as a text field. If I convert it to
numeric field, How can I copy this numeric value (with leading zero's) into a
text field. I have read that the numeric field won't actually store the
leading zero's, but the format can display the leading zero's.
Field: Sequence
Type: Numeric
Value: 1
Field: field1
Type: text
Value: test
New Field: New_Field
Type: Text
Value: New_Field = me.field1 & "." & me.Sequence
I would like the New_Field to equal "text.001"
Any thoughts about how to do this would be greatly appreciated.
I am importing an excel spreadsheet into an existing table. I have a field
titled "Sequence". Values such as 001, 002, 003 etc... Currently setup as
TEXT field. It doesn't matter to me if it is text or number field, but I
need the leading zeros. I will use this field later in combination with some
other fields to create a unique key in another table.
Question is, I am trying to validate this value is between 001 and 999 when
I import. This doesn't work too well as a text field. If I convert it to
numeric field, How can I copy this numeric value (with leading zero's) into a
text field. I have read that the numeric field won't actually store the
leading zero's, but the format can display the leading zero's.
Field: Sequence
Type: Numeric
Value: 1
Field: field1
Type: text
Value: test
New Field: New_Field
Type: Text
Value: New_Field = me.field1 & "." & me.Sequence
I would like the New_Field to equal "text.001"
Any thoughts about how to do this would be greatly appreciated.