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

How to get rid of some numbers in output

sehgaln
8 - Asteroid

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 REPLIES 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)

Labels
Top Solution Authors