SOLVED
Converting a value to negative based on IF condition
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
GaRaGe
8 - Asteroid
‎03-02-2017
04:15 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I have 2 fields in my data - "Amount" & "Indicator". Amount has all positive numbers (e.g. 3.2, 0.1, 10 etc.). Indicator has either "credit" or "debit" in it. I need to write an if condition so that the values in the amount field get converted to negative number if the indicator is "credit" and remains positive otherwise.
I tried a code like this
IF [indicator]= "credit"
THEN [amount] = (-1)*[amount]
ELSE [amount]=[amount]
ENDIF
but this returns me 0 for all debit values and -1 for all credit values. Any suggestions on how to do it correctly?
Thanks in advance
Solved! Go to Solution.
Labels:
- Labels:
- Expression
- Preparation
- Transformation
2 REPLIES 2
20 - Arcturus
‎03-02-2017
04:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
IF [indicator]= "credit"
THEN (-1)*[amount]
ELSE [amount]
ENDIF
Cheers,
Mark
THEN (-1)*[amount]
ELSE [amount]
ENDIF
Cheers,
Mark
Alteryx ACE & Top Community Contributor
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
Chaos reigns within. Repent, reflect and restart. Order shall return.
Please Subscribe to my youTube channel.
‎03-02-2017
04:26 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Thank you. this works
