Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

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
Top Solution Authors