How to change null value to blank?

When downloading looks to csv format via webhook, all null fields have the literal word “null”. We need this to be blank. How can we change that?

0 2 1,444
2 REPLIES 2

Hi Lawrence!

Did you try using any SQL function to catch this null value and print an empty char instead? https://www.w3schools.com/sql/sql_isnull.asp

For instance:

5b5de025-7b39-4bf6-8b3e-137b42ac53c1.gif

Best,

Leo

How about using table caliculations?​​

if(is_null(${the_field}), "", ${the_field})
Top Labels in this Space
Top Solution Authors