Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

Add prefix $ with the number

Inactive User
Not applicable

Hi,

 

I would like add prefix $ in front of the number,

For example, 100 wil be the $100,  1000 will be $ 1,000, 10000 will be $10,000

 

In the excel, these is function called "accounting number format", i would like to show the same result.

In the Alteryx, is there any similar functions?

Thank you.

1 REPLY 1
JohnJPS
15 - Aurora

Try a formula tool creating a string field using:

 

"$" + ToString([number],2,1)

 

... where [number] is the number you wish to format.

Labels
Top Solution Authors