Alteryx Designer Desktop Discussions

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

how to Exclude only positive zero values

suneetha
5 - Atom

Hi All,

 

I have a currency column with number values as below and I want to exclude only positive Zero entries, output also mention in below, can someone please help me with

Input

100.00 
150.00 
200.00 
600.00 
700.00 
0.00Positive Zero value
0.00Positive Zero value
0.00Positive Zero value
$0.00Negative zero value
$0.00Negative zero value
$0.00Negative zero value
(700.00) 
(600.00) 
(200.00) 
(155.00) 
(100.00) 

 

Output

 

100.00 
150.00 
200.00 
600.00 
700.00 
$0.00Negative zero value
$0.00Negative zero value
$0.00Negative zero value
(700.00) 
(600.00) 
(200.00) 
(155.00) 
(100.00) 
7 REPLIES 7
binuacs
20 - Arcturus

@suneetha Use the filter tool

image.png

FinnCharlton
13 - Pulsar

Is the positive zero values indicated by having no "$" in front of it? If so, you can use a filter with the formula:

[Currency Field]!='0.00'
suneetha
5 - Atom

This filter excluding both Positive and negative zero values

binuacs
20 - Arcturus

@suneetha In your data in the input file, how is the negative zero represented? Are they prefixed with $?

suneetha
5 - Atom

Hi  

 

it has "$" in front of zeros

suneetha
5 - Atom

@binuacs

 

yes it has "$" in front of zeros

binuacs
20 - Arcturus

@suneetha The workflow which I provided is working for you? 

Below is the input file i used 

 

image.png

 

and the output is

 

image.png

Labels