Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

Alteryx Designer Cloud Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Cloud.

How to convert the column to 8 digits

PrathimaV
5 - Atom

Suppose the column name is "X" and has a values "123456", "12345678", "1234"

 

I would like to set the column values to 8 digits as below

output for column name X values should be set "00123456", "12345677", "00001234"

 

Please help me on this

 

 

Regards,

Prathima

1 REPLY 1
APrasad_Tri
Alteryx Alumni (Retired)

Hi @Prathima Venkataram? ,

There are 2 ways to achieve this:

  1. using the toolbar Format -> Pad Text with leading characters.

 

 

  1. use PAD() function to set the values to 8 as shown below.

PAD($col,4,0,left)

Both approaches change the format to String. Convert the Data type to Integer.

 

I hope this helps.

Best,

Apeksha