Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
i have field in script as code and
i have loaded excel file containing field as code.
but data is not matching because in excel file code data like('0170','0012')
but in script data is loading for code like('170','12')
how can i chnage in script to get ('0170','0012') ??
please tell me the expression i have to use?
Try using:
Text(ID) as ID
where ID would be your field.
Hope this helps!
Hi use Text(your Field) as Field.
Regards
ASHFAQ
if you want to keep your field as number only, you can use as below
NUM(DATA,'0000') as DATA
Where DATA is your Fieldname
it is not working i need to add zero's before if data contains less than 4 digits.
it is not working i need to add zero's before if data contains less than 4 digits.
Hi,
Try below
NUM(Field,'0000') as Field
Or
Repeat('0',4(Field))&Right(Field,4)
Regards
ASHFAQ