Alteryx Designer Desktop Discussions

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

Formula for Output columns

ashleyinman
8 - Asteroid

I have data input in multiple columns where I want to reformat to show only the data i need.

Below i have the data currently being input and what I would like to see after i do some formulas but I'm not sure how to get to my desired outcome. 

 

I need the accept and reject dates but I need the deliver type created by person/ 

 

This is what is currently being input      
Accept/Reject DateTransaction DateItemQtyLocationCreated byType
6/11/20196/12/2019ABC100Review1Accept
6/12/20196/12/2019ABC100Review2Deliver
6/3/20196/3/2019EFG500Over3Reject
6/3/20196/3/2019EFG500Over4Deliver
       
       
This is what I want output     
Accept/Reject DateTransaction DateItemQtyLocationCreated byType
6/11/20196/12/2019ABC100Review2Accept
6/3/20196/3/2019EFG500Over4Reject
3 REPLIES 3
afv2688
16 - Nebula
16 - Nebula

Hello @ashleyinman ,

 

Hope this helps.

 

Results are shown in the join tool

 

Untitled2.png

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Regards

ConnorK
Alteryx
Alteryx

Hi @ashleyinman ,

 

In order to filter out these rows of data, what you could do is use a Filter tool. In the Filter tool you will design an expression that looks for when the "Type" column equals "accept" or "reject". The expression will look like this:

 

[TYPE] = "Accept" OR [TYPE] = "Reject"

 

 

I hope this helps!

 

 

Best,

Connor Kelleher
Senior Sales Engineer
Alteryx
fmvizcaino
17 - Castor
17 - Castor

Hi @ashleyinman ,

 

Attached is my solution, see if that works for your specific problem.

 

Best,

Fernando Vizcaino

Labels