Alert: There is a planned Community maintenance outage October 16th from approximately 10 - 11 PM PST. During this time the Alteryx Community will be inaccessible. Thank you for your understanding!

Alteryx Designer Desktop Discussions

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

How to get rid of some numbers in output

sehgaln
Asteroide

I need some help! in the table below, I have two columns (1 and 2). I only want the -1967.83 to show in the table and I want the rest of the numbers to be 0. 

How do I achieve that? Thanks!

Column dkfjdljflkdjfld (1)Column hdlfjdljfdljfljdfld (2)
00
2.18E-112.18E-11
8.98E-128.98E-12
-1967.83-1967.83
-3.64E-12-3.64E-12
00
00
00
00
00
00
2.33E-102.33E-10
00
00
00
00
00
00
00
3 RESPUESTAS 3
Kenda
16 - Nebula
16 - Nebula

Hey @sehgaln!

 

I would suggest using a Multi-Field Formula tool. Select both of your field names then use this expression:

iif([_CurrentField_]=-1967.83,[_CurrentField_],0)

Hope this helps!

tlarsen7572
11 - Bolide
11 - Bolide

Add a formula tool with the following function:

 

Round([1], .01)

CharlieS
17 - Castor
17 - Castor

Round to the nearest whole number using the following formula:

 

round([Column dkfjdljflkdjfld (1)],1)

Etiquetas