Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

How to store a string that looks like a number in aText Input tool without losing any info

mrc482
5 - Atom

Hi,

 

My problem is that I would like to store some data in a Text input tool which for alteryx looks like a number but I want it to be a string. However when I convert it to a string with a select tool, I lost numbers after the dot. Alteryx is rounding them as it looks like a number.

 

Example of what I want to store in a Text Input

 
Account
2.1
2.1112
2.0
2.130
2.13
5.50

 

Alteryx Output: 

Account
2.1
2.1112
2
2.13
2.13
5.5

 

I want to store it in a Text Input as this is a mapping table that will be updated by users, so  I want it to be easy for them to update. The numbers stored in a table are account numbers therefore 2.13 and 2.130 are different accounts and I want this information to stay like this. Is there a solution for this? 

2 REPLIES 2
mceleavey
17 - Castor
17 - Castor

Hi @mrc482 ,

 

The quickest way to do this, and it's a neat trick, is to simply add a another row in the first position with a string character:

 

Screenshot 2023-07-27 105117.png

This will force a string type in the text input tool.

You can then simply use a sample tool to skip the first 1 record.

 

 

I hope this helps,

 

M.

 

 



Bulien

mrc482
5 - Atom

Awesome! Thanks @mceleavey !

Labels