Hi Alteryx Team
I have a file that if it meets certain criteria the number should be added by 1
| Age | Indian | Amt | Type |
| 1 | Yes | 28000000 | Match |
| 10 | No | 36000000 | Match |
So I placed the formula tool on my canvas and wrote this (for output column choosen as Age) -
IF [Indian]="Yes"
AND IF [Type]="Match"
AND IF [Amt]>=20000000
THEN [Age]+1
ELSE [Age]+0
ENDIF
But I get a Data Preview as 'MAlformed If Statement'
The output required is -
| Age | Indian | Amt | Type |
| 2 | Yes | 28000000 | Match |
| 10 | No | 36000000 | Match |