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!

Engine Works

Under the hood of Alteryx: tips, tricks and how-tos.
FreeRangeDingo
11 - Bolide
11 - Bolide

I’ve been working with the Auto Field tool a lot lately.  Recently, I learned how to remove columns with zeros or nulls from Alteryx workflows using the Auto Field tool, and I want to show you how easy it is. 

 

Use Case

 

I receive data from service providers in CSV format. The CSVs and the columns they contain differ by vendor, and they also contain a lot of noise and unnecessary columns.  I needed to combine them all into a single table, so I built a workflow merging the CSV files.  As expected, my final table contained over 400 columns. Many of those columns contain only zero or null values—in which case, I don’t need the column at all.  However, I have no way of knowing which columns will be null or zero, so I needed a programmatic way to remove them. I will use the Auto Field and Dynamic Select tools to perform this task.

 

My Workflow

 

The screenshot below shows my entire workflow. I’ve highlighted the relevant tools in red. In order, I use a Multi-Field Formula tool, Auto Field tool, Select tool (skip the DateTime tool), Dynamic Select tool, and a Multi-Field Formula tool. The Select tool at the end is optional just to see how data types have changed.

 

FreeRangeDingo_0-1656104828705.png

 

Why the Auto Field Tool?

 

Many folks wonder why I wouldn’t just use the Data Cleansing tool, and the answer is simple.  If the column name changes or if new text columns are added, the Data Cleansing tool won’t process them.  It doesn’t have the option for Dynamic of Unknown Fields like the Auto Field does.  Basically, I’ve spent so much time reworking Data Cleansing tools that I have stopped using them entirely. 

 

The Auto Field tool works by reading through all records, and for a given column, it sets the field type to the smallest possible size based on the data contained in the column. While that doesn’t seem helpful, what you might not know is that if all of the values are null, it will set the data type to Boolean. From there, you can use the Dynamic Select tool to remove all Boolean data type fields. And that will programmatically remove all columns where the values are all null. To also include zeros in this process, review the detailed steps below.

 

The Detailed Process

 

There are five steps in this process, and the configuration for each tool is shown below with an explanation.

  1. Use the Multi-Field Formula tool to convert all zeros to null.
  2. Apply the Auto Field tool to change the data type.
  3. Use the Select tool to review the data types.
  4. Use the Dynamic Select tool to remove all Boolean data type fields.
  5. Insert another Multi-Field Formula tool to convert the remaining null back to zero.

 

Multi-Field Formula

 

The Multi-Field formula tool converts zero values to null. They need to be null for the Auto Field tool to do its thing. Now, notice that I have selected all text fields and that my expression accounts for zero in a few different ways. Why did I do that? Why didn’t I convert these columns to numbers first to make this easier and more foolproof?

 

I had to do it this way for two reasons. First, when reading data from CSVs, Alteryx imports all columns as String data types. I left them as strings because, as you’ll see in the screenshot below, the Auto Field tool only converts string data types. If I changed the data type to numbers, the process wouldn’t work.

 

FreeRangeDingo_1-1656104828722.png

 

Auto Field

 

Then, use the Auto Field tool on all columns….and I have a lot of columns. (See how it says “Select String Fields to Auto Change Field Type”).

 

FreeRangeDingo_2-1656104828738.png

 

Select

 

Next, the Select tool after the Auto Field tool confirms the strings converted to numbers. If a column contained only null values, the data type was converted to a Boolean field.

 

FreeRangeDingo_3-1656104828758.png

 

Dynamic Select

 

Now, I configured the Dynamic Select tool to select all field types except Boolean so that the Boolean columns will be removed.

 

FreeRangeDingo_4-1656104828768.png

 

Multi-Field Formula

 

Lastly, I use another Multi-Field Formula tool, this time selecting only Numeric fields, to replace all nulls with zeros. Since the fields are numeric, my zero is no longer in quotes.

 

FreeRangeDingo_5-1656104828783.png

 

Caveat

 

Of course, if you have valid Boolean data type columns, you’ll want to perform this process in a separate stream of the workflow where they are not included. If you don’t have any Boolean data type columns, this will work perfectly.

 

Columns Removed!

 

And that is how you can programmatically remove columns with zeros or nulls from an Alteryx workflow. In my next article, I’ll explain how I used a File Directory tool and a Batch macro to merge all those CSVs with different schemas.