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.
SOLVED

Handling nulls in a blob field

hilarylester
5 - Atom

I'm using a blob field to sftp a pipe delimited file to a server. When the file outputs, the null fields have been removed. I'm wanting to output all fields so that the header corresponds appropriately to the column. 

 

example output: 

ACCOUNT_NUMBER|PREFIX|FIRST_NAME|LAST_NAME

123|HILARY|LESTER

234|MRS.|TARA|JONES

 

desired output (add extra | in first row of data):

ACCOUNT_NUMBER|PREFIX|FIRST_NAME|LAST_NAME

123||HILARY|LESTER

234|MRS.|TARA|JONES

1 REPLY 1
danrh
13 - Pulsar

Hey @hilarylester, try replacing the nulls with empty strings.  Either use the Data Cleansing tool, or a formula something like:

 

 

IF IsNull([Value]) THEN '' ELSE [Value] ENDIF

If this doesn't fix the issue, can you share the process of how you're outputting?

 

Labels