Alteryx Designer Desktop Discussions

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

Assign a Group number based on the total dollar value exceeds $500

peyton-louden
7 - Meteor

Hello, I am trying to create a flow that applies a group type of sorts to data that exceeds $500. So in the "taxable" column, if the value exceeds $500 then the excess of 500 (anything over 500) needs to be split into a new column. I am having trouble grasping how to isolate the "excess" dollar amounts and separate the data into a new column. 

 

I've attached some sample data as reference. 

 

Thanks!

1 REPLY 1
jrgo
14 - Magnetar

Hi @peyton-louden 

 

Is the below what you're looking for? if so, see expression below screen cap.

jrgo_0-1630095410951.png

 

IF [Taxable] > 500
THEN [Taxable] - 500
ELSE 0
ENDIF

 

Labels