Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Record display

jmedidi
8 - Asteroid

Need some help to display the existing records as mentioned below:

 

FilesCalibrationWarningsDV_Testing_completion_date
Yes   
No   
n/a   
 06.00.05  
 033.44.33  
 112.3.45  
  Yes 
  No 
  n/a 
   12-Jun-20
   8-Aug-20
   21-Jan-22

 

Desired

 

FilesCalibrationWarningsDV_Testing_completion_date
Yes06.00.05Yes12-Jun-20
No033.44.33No8-Aug-20
n/a112.3.45n/a21-Jan-22

 

7 REPLIES 7
MatthewO
Alteryx
Alteryx

Hi @jmedidi - I believe the attached workflow will give you desired results.

 

nullRows.PNG

Thableaus
17 - Castor
17 - Castor

See flow attached.

 

Cheers,

atcodedog05
22 - Nova
22 - Nova

Hi @jmedidi 

 

My take on this works best if you have only 4 columns.

 

Workflow:

atcodedog05_0-1643118019115.png

 

Hope this helps : )

 

jmedidi
8 - Asteroid

I have more than 4 columns

messi007
15 - Aurora
15 - Aurora

@jmedidi,

 

Please see below :

 

messi007_0-1643119611563.png

 

Attached the workflow,

Regards,

jmedidi
8 - Asteroid

Works well. But i see lot of blank rows below after the contents moved. I tried Data cleansing tool to remove Null rows but looks like it doesn't work to remove the blank rows. also i can also use filter to remove empty rows but there are more than 60 fields to work.

gabrielvilella
14 - Magnetar

You can filter on one field that if that one is blank, you know that all the other are blank and should be removed. Or if you want to use the data cleansing too, you can have a multi field formula before like this:

IF IsEmpty([_CurrentField_]) THEN Null() ELSE [_CurrentField_] ENDIF

 

Labels