Start Free Trial

Alteryx Designer Desktop Discussions

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

Adding % with Fixed Decilam format

kauser
8 - Asteroid

hello, 

i am using Fixed format(19.3) to change my value  from 0 to 0.000 and now i need to add % sign after three decimal number. i want to see my output as below 

 

Current Output:

Quarter
0
0
0

 

 

Expected Output:

Quarter
0.000%
0.000%
0.000%

 

Thank you 

 

 

3 REPLIES 3
ChrisTX
16 - Nebula
16 - Nebula

You'll need to convert the data type to String, then add a "%" character.

 

Check out the Conversion Functions (alteryx.com), like ToString

 

Chris

 

DataNath
17 - Castor
17 - Castor

Hey @kauser, in order to add the '%' sign, you'll need to store this field as a string instead. You can do this, as well as adding the decimals, in a Formula expression using ToString() - one of the arguments allows you to define the number of dp:

 

ToString([Quarter], 3)+'%'

 

3dp percentage.png

KamenRider
11 - Bolide

Here's my solution

 

Capture.PNG

Labels
Top Solution Authors