Alteryx Designer Desktop Discussions

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

Compare data in a parition

Yuri24
Asteroid

Hello,

 

I am currently using sort tool and a multi row formula tool to get my data set into a partition format along with row numbers. However, I want to compare rows  belonging to a partition and pick specific row based on certain condition in that partition as well as the entire data set for all partitions. 

 

Sample data set below. I need to compare rows at the partition level of Name in this case where I will pick row for oscar with flag as 1. However if rows partitioned at name are having flag same values then I will pick the one with earliest date and if the dates are same too then I will pick the row that has highest priority value for that partition. If priority is same as well then I will pick any row.

 

NameNumberPrioritydateFlag
Oscar1234567890101/01/20111
Oscar1234567890201/01/20110
Jane Joe2345678901401/02/20111
Jane Joe2345678901301/02/20111
Don Jon3456789012303/03/20130
Don Jon3456789012203/04/20130
Bill Will4567890123204/05/20120
Bill Will4567890123104/06/20121
Banner Stark5678901234210/10/20201
Banner Stark5678901234110/11/20201
Tony Bruce6789012345210/20/20211
Tony Bruce6789012345110/20/20211

 

Is this possible if to do dynamically?

 

TIA

6 ANTWORTEN 6
Prometheus
Quasar

@Yuri24 The first thing I did was convert the date field to an actual date so I could find the minimum/earliest per Name. Then I filtered data so only those records where Flag=1 passed. After that, I used a Summarize tool to group by Name and find Min_date, then joined that back to the output of the Filter tool on Name=Name and date=Min_date. After that join, I used the same type of logic to determine which of the duplicate names have priority.

Parse Date.PNG

Flag 1.PNG

Date to Min_Date.PNG

Priority to Min_Priority.PNG

Compare Data.PNG

caltang
17 - Castor
17 - Castor

Hi @Yuri24 

 

I actually saw your post yesterday and I wanted to send you my workflow. But somehow, your post was deleted and I couldn't send it to you. But I still kept my workflow, and I'm not sure if you added more context. Please find it attached.

 

image.png

Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Yuri24
Asteroid

@caltang @Prometheus sorry if i confused by not putting the required output

NameNumberPrioritydateFlag
Oscar123456789011/1/20111
Jane Joe234567890141/2/20111
Don Jon345678901233/3/20130
Bill Will456789012324/5/20120
Banner Stark5678901234210/10/20201
Tony Bruce6789012345210/20/20211

 

both solutions are close but not exact.

Yuri24
Asteroid

If only 1 flag is 1 in a partition then pick that row, if both flags are 1 then pick the one with earliest date (oldest date). If both flags are 0 then again pick the one with earliest date.

If both flags are 1 or if both flags are 0 and both dates are same then pick the one with highest priority.

caltang
17 - Castor
17 - Castor

Based on that logic, shouldn't it be:

 

Name Number Priority date Flag
Oscar 1234567890 1 1/1/2011 1
Jane Joe 2345678901 4 1/2/2011 1
Don Jon 3456789012 3 3/3/2013 0
Bill Will 4567890123 1 4/6/2012 1
Banner Stark 5678901234 2 10/10/2020 1
Tony Bruce 6789012345 2 10/20/2021 1

 

Bill has two records. One record already has Flag = 1, therefore it takes precedence. 

 

Based on your logic, the order of precedence:

  1. If Flag = 1, then take that first.
  2. If BOTH Flag = 1, then take earliest date.
  3. If BOTH Flag = 0, then take earliest date.
  4. If BOTH Flag = 1 OR 0 AND Dates are the same, then take those with Highest Priority.

I've attached the fixed version of the workflow. PFA.

 

image.png

Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Yuri24
Asteroid

@caltang thanks again. I am also trying to add another condition where for a given partition of rows if number in row1 and row2 has a matching 6 or more digit sequence then mark the second row as 0 in a new field.

 

I used multi row formula as shown below:

 

 

If [Name] = [Row-1:Name] and
(REGEX_Match([Number], '.*(\d{6}).*') = REGEX_Match([Row-1:Number], '.*(\d{6}).*'))
then
0
Else
1
Endif

 

Sample input

NamePhone
Oscar234567890
Oscar345678901
Zoro1122333444
Zoro9988776600

 

expected output:

NamePhoneresult
Oscar2345678901
Oscar3456789010
Zoro11223334441
Zoro99887766001

 

but I am getting 

NamePhoneresult
Oscar2345678900
Oscar3456789011
Zoro11223334440
Zoro99887766001
Umfrage
We’re dying to get your help in determining what the new profile picture frame should be this Halloween. Cast your vote and help us haunt the Community with the best spooky character.
Don’t ghost us—pick your favorite now!
Beschriftungen