Alteryx Designer Desktop Discussions

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

Removing Blank Rows

kauser
8 - Asteroid

Hello, 

currently i am summarize a table with input from multiple files. How can i remove blank rows from output table - 

 

Current Output- 

Itemsjanuaryfebruarymarchaprilmayjunejulyaugustseptemberoctobernovemberdecember
A 56789101112131415
B4 6789  12  15
C45678 101112 1415
D            
E            
F            
G            
H            
I 56789101112131415
J456789101112131415
K            
L            
M            
N45678 1011 1314 
O 5 78910 1213 15
P456 891011 131415

 

Expecting Output(No Blank Rows) - 

 

Itemsjanuaryfebruarymarchaprilmayjunejulyaugustseptemberoctobernovemberdecember
A 56789101112131415
B4 6789  12  15
C45678 101112 1415
I 56789101112131415
J456789101112131415
N45678 1011 1314 
O 5 78910 1213 15
P456 891011 131415
6 REPLIES 6
Carolyn
9 - Comet

I'm sure there's a better solution, but I would do is:

  1. Add a Formula Tool to total January-December
  2. Filter where the Total > 0
  3. Use a Select to remove the Total column

Another option would be to use a Filter where you say

 

!isnull(January) and !isnull(February)  ....

 

for all the months but that seems less than ideal

flying008
14 - Magnetar

Hi, @kauser 

 

You can use Data Cleansing tool to remove null rows

 

录制_2024_07_09_09_28_21_198.gif

 

kauser
8 - Asteroid

Hi @flying008 

can you please provide the workflow for this. this illustration is not clear 

flying008
14 - Magnetar

Hi, @kauser 

 

Due to security policy restrictions, I am unable to upload any WF, so please try it yourself according to the tool process in the animation.

aatalai
14 - Magnetar

@kauser take a look at the attached workflow that should do the trick. LEt me know how you get on

Raj
15 - Aurora

@kauser one way of doing this.

Labels