Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

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

Minus signs

Nicolaas_Vercruyse
7 - Meteor

Hello,

 

There is probably an easy way but I haven't found it yet.

I have a  table looking like this

Tax base amount Tax
2.000,00- 420,00-
24.825,10- 5.213,27-
24.820,105.209,27

 

And I would need to get this as fixed decimals...

 

Any quick idea?

3 REPLIES 3
caltang
17 - Castor
17 - Castor

The thousand separator is a "."? 

Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Nicolaas_Vercruyse
7 - Meteor

yes

Christina_H
14 - Magnetar

Can use this in a multifield formula:

ToNumber(REGEX_Replace([_CurrentField_],"(.*)(-)","$2$1"),0,0,",")

 

image.png

Labels