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.

Number format issues

ManuelRodrigues
8 - Asteroid

Hi All

 

I need to put the format of the number in the Cumulative to dat column in a recognizable number that can work with the workflow (i.e. remove the , and . )

 

ManuelRodrigues_0-1667495189967.png

Thanks!

3 REPLIES 3
IraWatt
17 - Castor
17 - Castor

Hey @ManuelRodrigues,

You can use the replace formula to replace the dots and commas to an empty string:

 

Replace( Replace([Field1], ",", ""),".","")

 

Then use a select to convert the text to a number:

IraWatt_0-1667495627026.png

The community has some quick and easy videos on formulas and the Formula Tool here https://community.alteryx.com/t5/Interactive-Lessons/tkb-p/interactive-lessons/label-name/Writing%20...

 

Any questions or issues please ask

Ira Watt
Technical Consultant
Watt@Bulien.com 

 

binuacs
21 - Polaris

@ManuelRodrigues Check your settings

 

binuacs_0-1667495602676.png

 

Felipe_Ribeir0
16 - Nebula

Hi @ManuelRodrigues 

 

Try this formula

 

ToNumber(Replace(Replace([Cumulative to Date], '.', ''), ',', '.'), 2)

 

Felipe_Ribeir0_0-1667495650034.png

 

Labels